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

24 lines
764 B
Nix

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