mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
644 B
Nix
23 lines
644 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, genmsg, catkin }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-gencpp";
|
|
version = "0.6.0";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ros-gbp/gencpp-release/archive/release/kinetic/gencpp/0.6.0-0.tar.gz;
|
|
sha256 = "666e560bae5fc371b3cff19f9943548c46caa665ae099f437f7dc2b8a0e665be";
|
|
};
|
|
|
|
buildInputs = [ genmsg ];
|
|
propagatedBuildInputs = [ genmsg ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''C++ ROS message and service generators.'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|