mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
619 B
Nix
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;
|
|
};
|
|
}
|