nix-ros-overlay/distros/humble/foonathan-memory-vendor/default.nix

26 lines
958 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-copyright, ament-cmake-lint-cmake, ament-cmake-test, ament-cmake-xmllint, cmake, git }:
buildRosPackage {
pname = "ros-humble-foonathan-memory-vendor";
version = "1.2.0-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/foonathan_memory_vendor-release/archive/release/humble/foonathan_memory_vendor/1.2.0-3.tar.gz";
name = "1.2.0-3.tar.gz";
sha256 = "d2a91cc8925b407621806b5c885ca558972838c52ba57c0cd6dbc6e3870ac8bc";
};
buildType = "cmake";
buildInputs = [ git ];
checkInputs = [ ament-cmake-copyright ament-cmake-lint-cmake ament-cmake-test ament-cmake-xmllint ];
propagatedBuildInputs = [ cmake ];
nativeBuildInputs = [ cmake git ];
meta = {
description = "Foonathan/memory vendor package for Fast-RTPS.";
license = with lib.licenses; [ asl20 "Zlib" ];
};
}