1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/humble/ament-cmake-core/default.nix

32 lines
1.2 KiB
Nix
Raw Normal View History

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-package, cmake, python3Packages }:
buildRosPackage {
pname = "ros-humble-ament-cmake-core";
version = "1.3.6-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ament_cmake-release/archive/release/humble/ament_cmake_core/1.3.6-1.tar.gz";
name = "1.3.6-1.tar.gz";
sha256 = "8dd72aa69b70ff7f4098b04a49b19bc8a1eec82cd4709e332e21b78018f335b4";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ ament-package cmake python3Packages.catkin-pkg ];
nativeBuildInputs = [ ament-package cmake python3Packages.catkin-pkg ];
meta = {
description = ''The core of the ament buildsystem in CMake.
Several subcomponents provide specific funtionalities:
* environment: provide prefix-level setup files
* environment_hooks: provide package-level setup files and environment hooks
* index: store information in an index and retrieve them without crawling
* package_templates: templates from the ament_package Python package
* symlink_install: use symlinks for CMake install commands'';
license = with lib.licenses; [ asl20 ];
};
}