2022-07-01 13:51:59 +00:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2022-07-01 13:51:59 +00:00
|
|
|
# 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";
|
2023-05-02 16:50:22 -04:00
|
|
|
version = "0.1.10-r1";
|
2022-07-01 13:51:59 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-05-02 16:50:22 -04:00
|
|
|
url = "https://github.com/rm-controls/rm_controllers-release/archive/release/noetic/gpio_controller/0.1.10-1.tar.gz";
|
|
|
|
name = "0.1.10-1.tar.gz";
|
|
|
|
sha256 = "90be855ab54bc16a1f89b6750da4e4b3faa224c7a5111f17fe15f9e2d1c95592";
|
2022-07-01 13:51:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ 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 ];
|
|
|
|
};
|
|
|
|
}
|