2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2023-08-25 13:31:58 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-vendor-package, nlohmann_json, pybind11-vendor }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-pybind11-json-vendor";
|
2024-03-08 13:41:18 +00:00
|
|
|
version = "0.4.1-r2";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-08 13:41:18 +00:00
|
|
|
url = "https://github.com/ros2-gbp/pybind11_json_vendor-release/archive/release/rolling/pybind11_json_vendor/0.4.1-2.tar.gz";
|
|
|
|
name = "0.4.1-2.tar.gz";
|
|
|
|
sha256 = "a5e09f7bf9d418ea966b21eaa78367a3861d82b44452007e1210eb953bbb406c";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2023-08-25 13:31:58 +00:00
|
|
|
buildInputs = [ ament-cmake ament-cmake-vendor-package ];
|
2022-12-09 19:20:15 -05:00
|
|
|
propagatedBuildInputs = [ nlohmann_json pybind11-vendor ];
|
2023-08-25 13:31:58 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-vendor-package ];
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A vendor package for pybind11_json for Modern C++'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|