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/genpy/default.nix
2019-04-06 20:59:50 -04:00

23 lines
682 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, genmsg, catkin, pythonPackages }:
buildRosPackage {
pname = "ros-kinetic-genpy";
version = "0.6.7";
src = fetchurl {
url = https://github.com/ros-gbp/genpy-release/archive/release/kinetic/genpy/0.6.7-0.tar.gz;
sha256 = "6da14e4bd43b284e08490dba88f78af807d21f7b3e1aa06e4691e5124f2f77ec";
};
buildInputs = [ genmsg ];
propagatedBuildInputs = [ genmsg pythonPackages.pyyaml ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Python ROS message and service generators.'';
#license = lib.licenses.BSD;
};
}