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
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, git, nlohmann_json, pybind11-vendor }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-pybind11-json-vendor";
|
2023-06-19 17:15:23 -04:00
|
|
|
version = "0.4.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-06-19 17:15:23 -04:00
|
|
|
url = "https://github.com/ros2-gbp/pybind11_json_vendor-release/archive/release/rolling/pybind11_json_vendor/0.4.0-1.tar.gz";
|
|
|
|
name = "0.4.0-1.tar.gz";
|
|
|
|
sha256 = "7daa3dbf699550bcc1993e6afc15ce21d9846d641066965bb2849405cd92c02a";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake git ];
|
|
|
|
propagatedBuildInputs = [ nlohmann_json pybind11-vendor ];
|
|
|
|
nativeBuildInputs = [ ament-cmake git ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A vendor package for pybind11_json for Modern C++'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|