1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/kinetic/plot-tools/default.nix

24 lines
619 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, rospy }:
buildRosPackage {
pname = "ros-kinetic-plot-tools";
version = "0.0.3";
src = fetchurl {
url = https://github.com/srv/srv_tools-release/archive/release/kinetic/plot_tools/0.0.3-0.tar.gz;
sha256 = "749c5e70c3d85169a8dcb63ee406b9727028609a11ce7ab1d4a7679ee0c7ac35";
};
buildInputs = [ rospy ];
propagatedBuildInputs = [ rospy ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''plot_tools'';
#license = lib.licenses.BSD;
};
}