1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/distros/jazzy/test-interface-files/default.nix

24 lines
795 B
Nix

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-core }:
buildRosPackage {
pname = "ros-jazzy-test-interface-files";
version = "0.11.0-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/test_interface_files-release/archive/release/jazzy/test_interface_files/0.11.0-3.tar.gz";
name = "0.11.0-3.tar.gz";
sha256 = "7568c6e5f6e5d6f2e3fd16c6392147b169036b2dd69f483101dadeefc0a1cdd5";
};
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 ];
};
}