mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
933 B
Nix
26 lines
933 B
Nix
![]() |
|
||
|
# Copyright 2021 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, action-msgs, ament-cmake, ament-lint-common, rosidl-default-generators, rosidl-default-runtime }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-galactic-ros2cli-test-interfaces";
|
||
|
version = "0.13.2-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/ros2cli-release/archive/release/galactic/ros2cli_test_interfaces/0.13.2-1.tar.gz";
|
||
|
name = "0.13.2-1.tar.gz";
|
||
|
sha256 = "7884490aab83c6a607b8e04484af2b50dfdc63771d70e10088665b7eb33a7561";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
checkInputs = [ ament-lint-common ];
|
||
|
propagatedBuildInputs = [ action-msgs rosidl-default-runtime ];
|
||
|
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''A package containing interface definitions for testing ros2cli.'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|