mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
885 B
Nix
25 lines
885 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, roscpp, rospy, rostest, std-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-rr-control-input-manager";
|
|
version = "1.1.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/RoverRobotics-release/rr_openrover_stack-release/archive/release/melodic/rr_control_input_manager/1.1.1-1.tar.gz";
|
|
name = "1.1.1-1.tar.gz";
|
|
sha256 = "db25b07273b106b589148f80502cb9e31e015c44c1038da30701e59c05665366";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
checkInputs = [ rostest ];
|
|
propagatedBuildInputs = [ roscpp rospy std-msgs ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Filter velocity commands by ensuring that message time stamps do not exceed given timeout thresholds.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|