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/rmw/default.nix
2019-09-06 12:16:22 -04:00

26 lines
891 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-lint-common, ament-cmake-gmock, ament-cmake-ros, ament-lint-auto, rcutils, rosidl-generator-c }:
buildRosPackage {
pname = "ros-dashing-rmw";
version = "0.7.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmw-release/archive/release/dashing/rmw/0.7.2-1.tar.gz";
name = "0.7.2-1.tar.gz";
sha256 = "b7948ecd56826d4c6cdcfc147b20fe679f8103c2901314c4b5cef0821d16dc19";
};
buildType = "ament_cmake";
buildInputs = [ rcutils ];
checkInputs = [ ament-lint-auto ament-lint-common ament-cmake-gmock ];
propagatedBuildInputs = [ rcutils rosidl-generator-c ];
nativeBuildInputs = [ ament-cmake-ros ];
meta = {
description = ''Contains the ROS middleware API.'';
license = with lib.licenses; [ asl20 ];
};
}