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

25 lines
874 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2021 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, actionlib, catkin, pr2-controllers-msgs, rospy, tf }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-pr2-position-scripts";
version = "0.6.1";
src = fetchurl {
url = "https://github.com/pr2-gbp/pr2_apps-release/archive/release/melodic/pr2_position_scripts/0.6.1-0.tar.gz";
name = "0.6.1-0.tar.gz";
2019-03-21 00:14:59 -04:00
sha256 = "8a6dddf6474456caf8bc7efdec66febbabfc1c4f5c4ca533a0520dcc5b6b660c";
};
buildType = "catkin";
propagatedBuildInputs = [ actionlib pr2-controllers-msgs rospy tf ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''This package contains a number of scripts to set various components of the PR2. They are used in the apps to improve usablity.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}