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/melodic/static-transform-mux/default.nix

23 lines
759 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, tf2-msgs, rospy }:
buildRosPackage {
pname = "ros-melodic-static-transform-mux";
version = "1.1.0";
src = fetchurl {
url = https://github.com/peci1/static_transform_mux-release/archive/release/melodic/static_transform_mux/1.1.0-0.tar.gz;
sha256 = "9b5bce13459bb33c3bcf4eb03f3c72e10e4b9b118f16a5a352ca9d42937e8343";
};
propagatedBuildInputs = [ tf2-msgs rospy ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''A helper node that makes sure everybody knows about all static transforms, even if they are published by multiple publishers.'';
#license = lib.licenses.BSD;
};
}