1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-09 11:54:40 +03:00
nix-ros-overlay/distros/noetic/hardware-interface/default.nix

25 lines
712 B
Nix
Raw Normal View History

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