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/kinetic/openrtm-tools/default.nix
2019-04-06 20:59:50 -04:00

23 lines
796 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, rtshell, rosbash, catkin, rostest, openrtm-aist-python, openrtm-aist }:
buildRosPackage {
pname = "ros-kinetic-openrtm-tools";
version = "1.4.2";
src = fetchurl {
url = https://github.com/tork-a/rtmros_common-release/archive/release/kinetic/openrtm_tools/1.4.2-0.tar.gz;
sha256 = "2357067dfe93be5ed3bdadd4b28e08f39aa6bb5002b7c3aa75090e9e54cb6803";
};
buildInputs = [ rostest rtshell openrtm-aist-python rosbash openrtm-aist ];
propagatedBuildInputs = [ rtshell openrtm-aist-python openrtm-aist rosbash ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''The openrtm_tools package'';
#license = lib.licenses.BSD;
};
}