mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-19 16:40:36 +03:00
26 lines
865 B
Nix
26 lines
865 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, catkin, pythonPackages }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-rosgraph";
|
||
|
version = "1.12.14";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/ros_comm-release/archive/release/kinetic/rosgraph/1.12.14-0.tar.gz;
|
||
|
sha256 = "d7b45e171ba68481038c4c53cba2e9848acbe1b5a0ab4d7385948c648bffbc5e";
|
||
|
};
|
||
|
|
||
|
checkInputs = [ pythonPackages.mock ];
|
||
|
propagatedBuildInputs = [ pythonPackages.rospkg pythonPackages.netifaces ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''rosgraph contains the rosgraph command-line tool, which prints
|
||
|
information about the ROS Computation Graph. It also provides an
|
||
|
internal library that can be used by graphical tools.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|