1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/melodic/allocators/default.nix

23 lines
711 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin }:
buildRosPackage {
pname = "ros-melodic-allocators";
version = "1.0.25";
src = fetchurl {
url = "https://github.com/ros-gbp/ros_realtime-release/archive/release/melodic/allocators/1.0.25-0.tar.gz";
name = "1.0.25-0.tar.gz";
sha256 = "585ef0525e4b0613ee2b9aca41a692dc9efab13c0a8e78ffe36e8efc03bd8810";
};
buildType = "catkin";
nativeBuildInputs = [ catkin ];
meta = {
description = ''Contains aligned allocation functions, as well as an STL-compatible AlignedAllocator class.'';
license = with lib.licenses; [ bsdOriginal ];
};
}