2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 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, ament-lint-auto, ament-lint-common }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-tlsf";
|
2023-05-02 16:50:22 -04:00
|
|
|
version = "0.9.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-05-02 16:50:22 -04:00
|
|
|
url = "https://github.com/ros2-gbp/tlsf-release/archive/release/rolling/tlsf/0.9.0-1.tar.gz";
|
|
|
|
name = "0.9.0-1.tar.gz";
|
|
|
|
sha256 = "176aef66b08c102f6a499b0f86af9cbe1ede44e7159854acfc442e724b8b1a6d";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ ament-cmake ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''TLSF allocator version 2.4.6'';
|
|
|
|
license = with lib.licenses; [ "LGPL-2.1-only" ];
|
|
|
|
};
|
|
|
|
}
|