mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-19 08:31:07 +03:00
23 lines
674 B
Nix
23 lines
674 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, catkin }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-genmsg";
|
||
|
version = "0.5.11";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/genmsg-release/archive/release/kinetic/genmsg/0.5.11-0.tar.gz;
|
||
|
sha256 = "24dbb7dc91d8a7c56f0c65129d80b2f05d3847a39ced744e73ccc295897afa42";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ catkin ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Standalone Python library for generating ROS message and service data structures for various languages.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|