nix-ros-overlay/distros/foxy/ament-cmake-export-dependencies/default.nix
2022-11-04 19:29:56 -04:00

24 lines
885 B
Nix

# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-core, ament-cmake-libraries }:
buildRosPackage {
pname = "ros-foxy-ament-cmake-export-dependencies";
version = "0.9.11-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ament_cmake-release/archive/release/foxy/ament_cmake_export_dependencies/0.9.11-1.tar.gz";
name = "0.9.11-1.tar.gz";
sha256 = "ef301d14628c07235f3f415d2386d4f4d214d027080f2943cab4bacd3a525652";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ ament-cmake-core ament-cmake-libraries ];
nativeBuildInputs = [ ament-cmake-core ament-cmake-libraries ];
meta = {
description = ''The ability to export dependencies to downstream packages in the ament buildsystem in CMake.'';
license = with lib.licenses; [ asl20 ];
};
}