1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-17 23:50:21 +03:00
nix-ros-overlay/melodic/controller-interface/default.nix
2019-12-09 23:36:28 -05:00

24 lines
781 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, hardware-interface, pluginlib, roscpp }:
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";
sha256 = "6b4025c033f2785cdbf9c8246c7699e597de302f0651fd94e64d3b7746786350";
};
buildType = "catkin";
propagatedBuildInputs = [ hardware-interface pluginlib roscpp ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Interface base class for controllers'';
license = with lib.licenses; [ bsdOriginal ];
};
}