mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
862 B
Nix
25 lines
862 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-gmock, ament-cmake-ros, ament-lint-auto, ament-lint-common, 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";
|
|
checkInputs = [ ament-cmake-gmock ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ rcutils rosidl-generator-c ];
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
meta = {
|
|
description = ''Contains the ROS middleware API.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|