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/distros/humble/rmw-implementation-cmake/default.nix
2022-06-11 13:21:09 -04:00

25 lines
856 B
Nix

# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common }:
buildRosPackage {
pname = "ros-humble-rmw-implementation-cmake";
version = "6.1.0-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmw-release/archive/release/humble/rmw_implementation_cmake/6.1.0-2.tar.gz";
name = "6.1.0-2.tar.gz";
sha256 = "dac5ef25f62fc541dd0def0b7a19b12304b8ef76c0830eec03417443effee744";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ ament-cmake ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''CMake functions which can discover and enumerate available implementations.'';
license = with lib.licenses; [ asl20 ];
};
}