mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
801 B
Nix
24 lines
801 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-rolling-test-interface-files";
|
|
version = "0.11.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/test_interface_files-release/archive/release/rolling/test_interface_files/0.11.0-1.tar.gz";
|
|
name = "0.11.0-1.tar.gz";
|
|
sha256 = "6b79658933b56d880528d130f381ef63c087b6f02d4320f3a3f53762d67454c3";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|