1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +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-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/tlsf-release/archive/release/rolling/tlsf/0.9.0-2.tar.gz";
name = "0.9.0-2.tar.gz";
sha256 = "1db53ca6303a85ff1b533b6e38b905919be1a1c5f9918b2e841e90d9c84331d2";
};
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" ];
};
}