1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/kinetic/plot-tools/default.nix
2019-04-06 20:59:50 -04:00

23 lines
619 B
Nix

# 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;
};
}