mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
23 lines
731 B
Nix
23 lines
731 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-qb-device-description";
|
|
version = "2.0.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://bitbucket.org/qbrobotics/qbdevice-ros-release/get/release/melodic/qb_device_description/2.0.1-0.tar.gz";
|
|
name = "2.0.1-0.tar.gz";
|
|
sha256 = "68b1656670c1a86828fc13dd7ad3943209f3b95df25079c632717d2a3a326aea";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''This package contains a device-independent description utilities for qbrobotics® devices.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|