mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
22 lines
695 B
Nix
22 lines
695 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake-core }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-crystal-ament-cmake-export-link-flags";
|
||
|
version = "0.6.1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros2-gbp/ament_cmake-release/archive/release/crystal/ament_cmake_export_link_flags/0.6.1-0.tar.gz;
|
||
|
sha256 = "8b54185847f99157540ce3086ab551ba15b7dcd42c4ed10a19e9933e2de69c37";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ ament-cmake-core ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''The ability to export link flags to downstream packages in the ament buildsystem.'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|