1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/rolling/tlsf/default.nix

26 lines
782 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common }:
buildRosPackage {
pname = "ros-rolling-tlsf";
version = "0.9.0-r1";
src = fetchurl {
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";
};
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" ];
};
}