mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 02:04:49 +03:00
25 lines
776 B
Nix
25 lines
776 B
Nix
|
|
# Copyright 2025 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-jazzy-tlsf";
|
|
version = "0.9.0-r3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/tlsf-release/archive/release/jazzy/tlsf/0.9.0-3.tar.gz";
|
|
name = "0.9.0-3.tar.gz";
|
|
sha256 = "a066aeacd935a3adbebf3b5b346190d7d310008e2752feefdc3d461e6bc97d37";
|
|
};
|
|
|
|
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" ];
|
|
};
|
|
}
|