nix-ros-overlay/distros/noetic/controller-interface/default.nix

24 lines
762 B
Nix

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