2019-03-21 00:14:59 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-03-21 00:14:59 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-03-06 18:43:43 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, genmsg, pythonPackages }:
|
2019-03-21 00:14:59 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-gencpp";
|
2020-03-06 18:43:43 +00:00
|
|
|
version = "0.6.5-r1";
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-03-06 18:43:43 +00:00
|
|
|
url = "https://github.com/ros-gbp/gencpp-release/archive/release/melodic/gencpp/0.6.5-1.tar.gz";
|
|
|
|
name = "0.6.5-1.tar.gz";
|
|
|
|
sha256 = "266a62b59b92406a6e2641084dc827a7f5d367d0606bbd0bf2963dbad6ee4664";
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-03-21 00:14:59 -04:00
|
|
|
propagatedBuildInputs = [ genmsg ];
|
2020-03-06 18:43:43 +00:00
|
|
|
nativeBuildInputs = [ catkin pythonPackages.setuptools ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''C++ ROS message and service generators.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|