mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 10:14:50 +03:00
24 lines
804 B
Nix
24 lines
804 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-iron-ament-cmake-export-libraries";
|
|
version = "2.0.7-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/ament_cmake-release/archive/release/iron/ament_cmake_export_libraries/2.0.7-1.tar.gz";
|
|
name = "2.0.7-1.tar.gz";
|
|
sha256 = "4eed020f9504b7a9a2f57495b20dcc82bc1a81ea9e850d8c9164d31bfd602e69";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
propagatedBuildInputs = [ ament-cmake-core ];
|
|
nativeBuildInputs = [ ament-cmake-core ];
|
|
|
|
meta = {
|
|
description = "The ability to export libraries to downstream packages in the ament buildsystem in CMake.";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|