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/melodic/allocators/default.nix

22 lines
655 B
Nix
Raw Normal View History

# Copyright 2019 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;
sha256 = "585ef0525e4b0613ee2b9aca41a692dc9efab13c0a8e78ffe36e8efc03bd8810";
};
nativeBuildInputs = [ catkin ];
meta = {
description = ''Contains aligned allocation functions, as well as an STL-compatible AlignedAllocator class.'';
license = with lib.licenses; [ bsdOriginal ];
};
}