2022-06-09 18:50:37 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-06-09 18:50:37 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-core, ament-cmake-export-libraries }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-ament-cmake-export-interfaces";
|
2024-03-01 13:05:07 +00:00
|
|
|
version = "1.3.8-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-01 13:05:07 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ament_cmake-release/archive/release/humble/ament_cmake_export_interfaces/1.3.8-1.tar.gz";
|
|
|
|
name = "1.3.8-1.tar.gz";
|
|
|
|
sha256 = "c36384afa21203004c19b599e02476cc642ee099ece55e9d22192c3f5c10b91f";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
propagatedBuildInputs = [ ament-cmake-core ament-cmake-export-libraries ];
|
2022-11-04 19:29:56 -04:00
|
|
|
nativeBuildInputs = [ ament-cmake-core ament-cmake-export-libraries ];
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The ability to export interfaces to downstream packages in the ament buildsystem in CMake.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|