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/tf2-py/default.nix

25 lines
680 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2020 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, rospy, tf2 }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-tf2-py";
version = "0.6.6-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/ros-gbp/geometry2-release/archive/release/melodic/tf2_py/0.6.6-1.tar.gz";
name = "0.6.6-1.tar.gz";
sha256 = "949ec60f60bd8d454949978aa90e7358e18c5e89d4c5ba297162734f051097dd";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
propagatedBuildInputs = [ rospy tf2 ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''The tf2_py package'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}