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/distros/iron/test-interface-files/default.nix

25 lines
793 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-core }:
buildRosPackage {
pname = "ros-iron-test-interface-files";
version = "0.10.2-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/test_interface_files-release/archive/release/iron/test_interface_files/0.10.2-3.tar.gz";
name = "0.10.2-3.tar.gz";
sha256 = "1ec815b198c9fb3064fcd1338eddafa293823b08e55c52385f1d1750f5d62a90";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-core ];
nativeBuildInputs = [ ament-cmake-core ];
meta = {
description = "A package containing message definitions and fixtures used exclusively for testing purposes.";
license = with lib.licenses; [ asl20 ];
};
}