2019-09-04 17:11:04 -04:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-09-04 17:11:04 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-package, cmake, python3Packages }:
|
2019-09-04 17:11:04 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-crystal-ament-cmake-core";
|
|
|
|
version = "0.6.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:21:13 -04:00
|
|
|
url = "https://github.com/ros2-gbp/ament_cmake-release/archive/release/crystal/ament_cmake_core/0.6.1-0.tar.gz";
|
|
|
|
name = "0.6.1-0.tar.gz";
|
2019-09-04 17:11:04 -04:00
|
|
|
sha256 = "fdf241071c3f7151841f0ba54be21351e60c17571722644bac8df642587354ca";
|
|
|
|
};
|
|
|
|
|
2019-09-05 22:48:11 -04:00
|
|
|
buildType = "ament_cmake";
|
2019-12-09 23:36:28 -05:00
|
|
|
propagatedBuildInputs = [ ament-package cmake python3Packages.catkin-pkg ];
|
|
|
|
nativeBuildInputs = [ ament-package cmake python3Packages.catkin-pkg ];
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|