regenerate all distros, Fri Jun 5 12:54:26 2020

This commit is contained in:
Superflore 2020-06-05 12:54:26 +00:00 committed by Ben Wolsieffer
parent 9cb66d5471
commit 1aa4fdb475
317 changed files with 4380 additions and 768 deletions

View file

@ -0,0 +1,24 @@
# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, nodelet, phidgets-api, roscpp, roslaunch, std-msgs }:
buildRosPackage {
pname = "ros-noetic-phidgets-analog-inputs";
version = "1.0.0-r1";
src = fetchurl {
url = "https://github.com/ros-drivers-gbp/phidgets_drivers-release/archive/release/noetic/phidgets_analog_inputs/1.0.0-1.tar.gz";
name = "1.0.0-1.tar.gz";
sha256 = "099a0800fa4a249d0586f19e7fce6a02b2a7faae5525d70ef1dc975c78e70e25";
};
buildType = "catkin";
propagatedBuildInputs = [ nodelet phidgets-api roscpp roslaunch std-msgs ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Driver for the Phidgets Analog Input devices'';
license = with lib.licenses; [ bsdOriginal ];
};
}