1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 16:40:36 +03:00
nix-ros-overlay/distros/rolling/pybind11-json-vendor/default.nix

26 lines
915 B
Nix
Raw Normal View History

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-vendor-package, nlohmann_json, pybind11-vendor }:
buildRosPackage {
pname = "ros-rolling-pybind11-json-vendor";
version = "0.4.1-r1";
src = fetchurl {
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";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ament-cmake-vendor-package ];
propagatedBuildInputs = [ nlohmann_json pybind11-vendor ];
nativeBuildInputs = [ ament-cmake ament-cmake-vendor-package ];
meta = {
description = ''A vendor package for pybind11_json for Modern C++'';
license = with lib.licenses; [ asl20 ];
};
}