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 Jan 31 12:38:34 2020

This commit is contained in:
Superflore 2020-01-31 12:38:34 +00:00 committed by Ben Wolsieffer
parent edcc940515
commit 80b5ba05be
110 changed files with 1040 additions and 486 deletions

View file

@ -2,20 +2,19 @@
# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, roscpp, rostest, rosunit }:
{ lib, buildRosPackage, fetchurl, boost, catkin, roscpp }:
buildRosPackage {
pname = "ros-melodic-hardware-interface";
version = "0.15.1";
version = "0.16.0-r1";
src = fetchurl {
url = "https://github.com/ros-gbp/ros_control-release/archive/release/melodic/hardware_interface/0.15.1-0.tar.gz";
name = "0.15.1-0.tar.gz";
sha256 = "32cf3ab34458a850b34cf14066562015d475f2c2e6edd49b16725c7f86e218c9";
url = "https://github.com/ros-gbp/ros_control-release/archive/release/melodic/hardware_interface/0.16.0-1.tar.gz";
name = "0.16.0-1.tar.gz";
sha256 = "ad57d9e12500a21d1f4d3d9a63ab59c194de366b227d052e095cc50eb4fa190e";
};
buildType = "catkin";
checkInputs = [ rostest rosunit ];
propagatedBuildInputs = [ roscpp ];
propagatedBuildInputs = [ boost roscpp ];
nativeBuildInputs = [ catkin ];
meta = {