2023-06-19 17:15:23 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-06-19 17:15:23 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-iron-tlsf";
|
|
|
|
version = "0.8.2-r3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros2-gbp/tlsf-release/archive/release/iron/tlsf/0.8.2-3.tar.gz";
|
|
|
|
name = "0.8.2-3.tar.gz";
|
|
|
|
sha256 = "504eac055a6857b47c28e4dc7d8bffb541da851fb88b7721d73e0a28b61bd5cf";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ ament-cmake ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "TLSF allocator version 2.4.6";
|
2023-06-19 17:15:23 -04:00
|
|
|
license = with lib.licenses; [ "LGPL-2.1-only" ];
|
|
|
|
};
|
|
|
|
}
|