mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 17:54:49 +03:00
24 lines
1,010 B
Nix
24 lines
1,010 B
Nix
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-core, ament-cmake-include-directories, ament-cmake-libraries }:
|
|
buildRosPackage {
|
|
pname = "ros-iron-ament-cmake-target-dependencies";
|
|
version = "2.0.7-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/ament_cmake-release/archive/release/iron/ament_cmake_target_dependencies/2.0.7-1.tar.gz";
|
|
name = "2.0.7-1.tar.gz";
|
|
sha256 = "d5ce7fec9df656209ebf9fe495f9190b08e407ad8cd855a900ad31e4dbb9a35c";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
propagatedBuildInputs = [ ament-cmake-core ament-cmake-include-directories ament-cmake-libraries ];
|
|
nativeBuildInputs = [ ament-cmake-core ament-cmake-include-directories ament-cmake-libraries ];
|
|
|
|
meta = {
|
|
description = "The ability to add definitions, include directories and libraries of a package to a target in the ament buildsystem in CMake.";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|