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
|
|
|
|
|
|
|
|
{ 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";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ git ];
|
2022-06-09 18:50:37 -04:00
|
|
|
checkInputs = [ ament-cmake-copyright ament-cmake-lint-cmake ament-cmake-test ament-cmake-xmllint ];
|
|
|
|
propagatedBuildInputs = [ cmake ];
|
|
|
|
nativeBuildInputs = [ cmake git ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Foonathan/memory vendor package for Fast-RTPS.";
|
2022-06-09 18:50:37 -04:00
|
|
|
license = with lib.licenses; [ asl20 "Zlib" ];
|
|
|
|
};
|
|
|
|
}
|