2022-12-09 19:20:15 -05:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 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";
|
2023-08-25 13:31:58 +00:00
|
|
|
version = "0.4.1-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-08-25 13:31:58 +00:00
|
|
|
url = "https://github.com/ros2-gbp/pybind11_json_vendor-release/archive/release/rolling/pybind11_json_vendor/0.4.1-1.tar.gz";
|
|
|
|
name = "0.4.1-1.tar.gz";
|
|
|
|
sha256 = "d3d13a2696df0d832910dd7ee8a02aa2c9c628479a4d51a64f630be13db11a50";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|