1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/melodic/position-controllers/default.nix

24 lines
788 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, forward-command-controller, controller-interface }:
buildRosPackage {
pname = "ros-melodic-position-controllers";
version = "0.15.0";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = https://github.com/ros-gbp/ros_controllers-release/archive/release/melodic/position_controllers/0.15.0-0.tar.gz;
sha256 = "4fc2790e75f82b2a202e46c7c851f61348aaf1f355f69cb940ead157d5e43368";
2019-03-21 00:14:59 -04:00
};
buildInputs = [ forward-command-controller controller-interface ];
2019-03-21 00:14:59 -04:00
propagatedBuildInputs = [ forward-command-controller controller-interface ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''position_controllers'';
#license = lib.licenses.BSD;
};
}