2022-07-01 13:51:59 +00:00
|
|
|
|
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2022-09-20 16:42:07 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, controller-interface, pluginlib, realtime-tools, rm-common, roscpp }:
|
2022-07-01 13:51:59 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-gpio-controller";
|
2022-09-20 16:42:07 -04:00
|
|
|
version = "0.1.7-r1";
|
2022-07-01 13:51:59 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-09-20 16:42:07 -04:00
|
|
|
url = "https://github.com/rm-controls/rm_controllers-release/archive/release/noetic/gpio_controller/0.1.7-1.tar.gz";
|
|
|
|
name = "0.1.7-1.tar.gz";
|
|
|
|
sha256 = "975510a3a726dcfdc2671a805327a54837451999c9826d5e6490ba352430fff8";
|
2022-07-01 13:51:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-09-20 16:42:07 -04:00
|
|
|
propagatedBuildInputs = [ controller-interface pluginlib realtime-tools rm-common roscpp ];
|
2022-07-01 13:51:59 +00:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The gpio_controller package'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|