1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/melodic/qb-device-driver/default.nix

26 lines
880 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, qb-device-srvs, catkin, qb-device-utils, roscpp }:
buildRosPackage {
pname = "ros-melodic-qb-device-driver";
version = "2.0.1";
src = fetchurl {
url = "https://bitbucket.org/qbrobotics/qbdevice-ros-release/get/release/melodic/qb_device_driver/2.0.1-0.tar.gz";
name = "2.0.1-0.tar.gz";
2019-03-21 00:14:59 -04:00
sha256 = "5b3ec2c7b2ecf6aa8e1b99156423cb9f88208eb8d02024c2b30b8c6b1570e5d4";
};
buildType = "catkin";
buildInputs = [ qb-device-srvs roscpp qb-device-utils ];
2019-03-21 00:14:59 -04:00
propagatedBuildInputs = [ qb-device-srvs roscpp qb-device-utils ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''This package contains a device-independent API wrapper for qbrobotics® devices.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}