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/libphidgets/default.nix

24 lines
726 B
Nix

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, libusb }:
buildRosPackage {
pname = "ros-melodic-libphidgets";
version = "0.6.17-r1";
src = fetchurl {
url = "https://github.com/ipa320/cob_extern-release/archive/release/melodic/libphidgets/0.6.17-1.tar.gz";
name = "0.6.17-1.tar.gz";
sha256 = "b6effbdb16d9b02d375266a7b24369e8f6bea86096777146546bccedff4884e5";
};
buildType = "catkin";
propagatedBuildInputs = [ libusb ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''This package wraps the libphidgets to use it as a ros dependency'';
license = with lib.licenses; [ lgpl2 ];
};
}