mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
24 lines
840 B
Nix
24 lines
840 B
Nix
|
|
# Copyright 2023 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-core }:
|
|
buildRosPackage {
|
|
pname = "ros-foxy-ament-cmake-include-directories";
|
|
version = "0.9.12-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/ament_cmake-release/archive/release/foxy/ament_cmake_include_directories/0.9.12-1.tar.gz";
|
|
name = "0.9.12-1.tar.gz";
|
|
sha256 = "3f82bdd172e6ae00c9aec5ee0cd5e177501370b82cb9533f743a4234b886cd0c";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
propagatedBuildInputs = [ ament-cmake-core ];
|
|
nativeBuildInputs = [ ament-cmake-core ];
|
|
|
|
meta = {
|
|
description = ''The functionality to order include directories according to a chain of prefixes in the ament buildsystem in CMake.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|