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

24 lines
816 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, controller-interface, forward-command-controller, pluginlib }:
buildRosPackage {
pname = "ros-melodic-position-controllers";
version = "0.17.2-r1";
src = fetchurl {
url = "https://github.com/ros-gbp/ros_controllers-release/archive/release/melodic/position_controllers/0.17.2-1.tar.gz";
name = "0.17.2-1.tar.gz";
sha256 = "ff766d80dd25382f0cb374a6d861fe529df1e78616bff2f7c67055b54278e6d5";
};
buildType = "catkin";
propagatedBuildInputs = [ controller-interface forward-command-controller pluginlib ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''position_controllers'';
license = with lib.licenses; [ bsdOriginal ];
};
}