1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-16 15:10:33 +03:00
nix-ros-overlay/melodic/controller-interface/default.nix

25 lines
781 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, hardware-interface, pluginlib, roscpp }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-controller-interface";
version = "0.15.1";
src = fetchurl {
url = "https://github.com/ros-gbp/ros_control-release/archive/release/melodic/controller_interface/0.15.1-0.tar.gz";
name = "0.15.1-0.tar.gz";
2019-03-21 00:14:59 -04:00
sha256 = "6b4025c033f2785cdbf9c8246c7699e597de302f0651fd94e64d3b7746786350";
};
buildType = "catkin";
propagatedBuildInputs = [ hardware-interface pluginlib 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
};
}