1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-12 05:16:30 +03:00
nix-ros-overlay/distros/rolling/ament-cmake-export-include-directories/default.nix

25 lines
840 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-core }:
buildRosPackage {
pname = "ros-rolling-ament-cmake-export-include-directories";
version = "2.7.2-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/ament_cmake-release/archive/release/rolling/ament_cmake_export_include_directories/2.7.2-2.tar.gz";
name = "2.7.2-2.tar.gz";
sha256 = "48d002a83cfef6e64d9af1681754fe698b64cc4a67baec8268f1b835c774728e";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ ament-cmake-core ];
nativeBuildInputs = [ ament-cmake-core ];
meta = {
description = "The ability to export include directories to downstream packages in the ament buildsystem in CMake.";
license = with lib.licenses; [ asl20 ];
};
}