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, ament-cmake-core, ament-cmake-export-libraries }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-ament-cmake-export-interfaces";
|
2024-01-19 13:36:49 +00:00
|
|
|
version = "2.3.2-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-01-19 13:36:49 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ament_cmake-release/archive/release/rolling/ament_cmake_export_interfaces/2.3.2-1.tar.gz";
|
|
|
|
name = "2.3.2-1.tar.gz";
|
|
|
|
sha256 = "7f38fb50a4b8c2d9aacbdf1f6e24f1433ea859a239357f24b654852747fb58a7";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
propagatedBuildInputs = [ ament-cmake-core ament-cmake-export-libraries ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-core ament-cmake-export-libraries ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The ability to export interfaces to downstream packages in the ament buildsystem in CMake.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|