2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, cmake }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-sdformat-test-files";
|
2023-05-02 16:50:22 -04:00
|
|
|
version = "1.0.1-r2";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-05-02 16:50:22 -04:00
|
|
|
url = "https://github.com/ros2-gbp/sdformat_urdf-release/archive/release/rolling/sdformat_test_files/1.0.1-2.tar.gz";
|
|
|
|
name = "1.0.1-2.tar.gz";
|
|
|
|
sha256 = "fd920008db6128a0d3399f99ac07c5ff60e88505980391f5f7277a3ac5075572";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
|
|
|
propagatedBuildInputs = [ cmake ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Example SDFormat XML files for testing tools using hthis format.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|