2022-06-09 18:50:37 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-06-09 18:50:37 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2022-11-04 13:38:03 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, git, nlohmann_json, pybind11-vendor }:
|
2022-06-09 18:50:37 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-pybind11-json-vendor";
|
2023-06-19 17:15:23 -04:00
|
|
|
version = "0.2.3-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-06-19 17:15:23 -04:00
|
|
|
url = "https://github.com/ros2-gbp/pybind11_json_vendor-release/archive/release/humble/pybind11_json_vendor/0.2.3-1.tar.gz";
|
|
|
|
name = "0.2.3-1.tar.gz";
|
|
|
|
sha256 = "f1a0d4ee90be43e270c4b1c1a57801c26a6e360a13bc2974d46801d225a4c8df";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ ament-cmake git ];
|
2022-11-04 13:38:03 +00:00
|
|
|
propagatedBuildInputs = [ nlohmann_json pybind11-vendor ];
|
|
|
|
nativeBuildInputs = [ ament-cmake git ];
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "A vendor package for pybind11_json for Modern C++";
|
2022-06-09 18:50:37 -04:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|