# 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 ]; }; }