1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/melodic/static-tf/default.nix
2019-04-06 22:15:06 -04:00

23 lines
730 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, python, catkin, tf2-ros, rospy, tf, geometry-msgs }:
buildRosPackage {
pname = "ros-melodic-static-tf";
version = "0.0.2";
src = fetchurl {
url = https://github.com/wu-robotics/static_tf_release/archive/release/melodic/static_tf/0.0.2-0.tar.gz;
sha256 = "0c372214894f09c32cf9f0e8364ee57db00a1a906ba997b8767c027bf835e1f8";
};
buildInputs = [ rospy tf tf2-ros geometry-msgs ];
propagatedBuildInputs = [ python tf2-ros rospy tf geometry-msgs ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''The static_tf package'';
#license = lib.licenses.TODO;
};
}