2023-06-19 17:15:23 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-06-19 17:15:23 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2023-08-08 19:06:13 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, yaml-cpp }:
|
2023-06-19 17:15:23 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-iron-yaml-cpp-vendor";
|
|
|
|
version = "8.1.2-r3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros2-gbp/yaml_cpp_vendor-release/archive/release/iron/yaml_cpp_vendor/8.1.2-3.tar.gz";
|
|
|
|
name = "8.1.2-3.tar.gz";
|
|
|
|
sha256 = "5581e6bbaadbeb1bf3e32abf230682128fa18361b1a68d79dae39c72cadf8931";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
2023-08-08 19:06:13 +00:00
|
|
|
propagatedBuildInputs = [ yaml-cpp ];
|
2023-06-19 17:15:23 -04:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Wrapper around yaml-cpp, it provides a fixed CMake module and an ExternalProject build of it.";
|
2023-06-19 17:15:23 -04:00
|
|
|
license = with lib.licenses; [ asl20 mit ];
|
|
|
|
};
|
|
|
|
}
|