2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 05:16:46 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-package, python3Packages, cmake }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-ament-cmake-core";
|
2019-12-09 05:16:46 +00:00
|
|
|
version = "0.7.4-r1";
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-12-09 05:16:46 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ament_cmake-release/archive/release/dashing/ament_cmake_core/0.7.4-1.tar.gz";
|
|
|
|
name = "0.7.4-1.tar.gz";
|
|
|
|
sha256 = "d9e308452be90fb2dabc009319fdb70e7137307ea7e643d36b74f8b0221e45f6";
|
2019-09-04 17:11:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
propagatedBuildInputs = [ ament-package python3Packages.catkin-pkg cmake ];
|
|
|
|
nativeBuildInputs = [ ament-package python3Packages.catkin-pkg cmake ];
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|