1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00

regenerate all distros, Fri Mar 6 18:43:43 2020

This commit is contained in:
Superflore 2020-03-06 18:43:43 +00:00 committed by Ben Wolsieffer
parent 0fd7813c2c
commit 37d40b28f9
199 changed files with 1301 additions and 777 deletions

View file

@ -2,20 +2,20 @@
# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, genmsg }:
{ lib, buildRosPackage, fetchurl, catkin, genmsg, pythonPackages }:
buildRosPackage {
pname = "ros-melodic-gencpp";
version = "0.6.2";
version = "0.6.5-r1";
src = fetchurl {
url = "https://github.com/ros-gbp/gencpp-release/archive/release/melodic/gencpp/0.6.2-0.tar.gz";
name = "0.6.2-0.tar.gz";
sha256 = "d5b03777119dd51d50536b5e9613f00b0bb7558f363ed7f7358b8ceb8062b154";
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";
};
buildType = "catkin";
propagatedBuildInputs = [ genmsg ];
nativeBuildInputs = [ catkin ];
nativeBuildInputs = [ catkin pythonPackages.setuptools ];
meta = {
description = ''C++ ROS message and service generators.'';