mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-13 03:04:49 +03:00
24 lines
728 B
Nix
24 lines
728 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, cmake }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-sdformat-test-files";
|
|
version = "1.0.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/sdformat_urdf-release/archive/release/humble/sdformat_test_files/1.0.1-1.tar.gz";
|
|
name = "1.0.1-1.tar.gz";
|
|
sha256 = "864a5bcab04762e47305d3e33b7feb6437e8b79443aad0077fc0ee813350b559";
|
|
};
|
|
|
|
buildType = "cmake";
|
|
propagatedBuildInputs = [ cmake ];
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = {
|
|
description = "Example SDFormat XML files for testing tools using hthis format.";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|