1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/melodic/gencpp/default.nix

24 lines
644 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, genmsg, catkin }:
buildRosPackage {
pname = "ros-melodic-gencpp";
version = "0.6.2";
src = fetchurl {
url = https://github.com/ros-gbp/gencpp-release/archive/release/melodic/gencpp/0.6.2-0.tar.gz;
sha256 = "d5b03777119dd51d50536b5e9613f00b0bb7558f363ed7f7358b8ceb8062b154";
};
buildInputs = [ genmsg ];
2019-03-21 00:14:59 -04:00
propagatedBuildInputs = [ genmsg ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''C++ ROS message and service generators.'';
#license = lib.licenses.BSD;
};
}