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/dashing/shared-queues-vendor/default.nix
2019-11-07 17:46:51 -05:00

23 lines
697 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake }:
buildRosPackage {
pname = "ros-dashing-shared-queues-vendor";
version = "0.1.8-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rosbag2-release/archive/release/dashing/shared_queues_vendor/0.1.8-1.tar.gz";
name = "0.1.8-1.tar.gz";
sha256 = "493128281ef547c1d8cf66c2c2c53c4e4cfcdfa8e1b3970af471af1de981cb0d";
};
buildType = "ament_cmake";
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Vendor package for concurrent queues from moodycamel'';
license = with lib.licenses; [ asl20 ];
};
}