1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-17 07:30:25 +03:00
nix-ros-overlay/distros/melodic/controller-interface/default.nix

25 lines
764 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2020 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, hardware-interface, roscpp }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-controller-interface";
version = "0.18.0-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/ros-gbp/ros_control-release/archive/release/melodic/controller_interface/0.18.0-1.tar.gz";
name = "0.18.0-1.tar.gz";
sha256 = "56b57b00965ad662ac1364b4a9f5fea6f2390a8f367198e17c824224b14f2119";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
propagatedBuildInputs = [ hardware-interface roscpp ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''Interface base class for controllers.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}