nix-ros-overlay/distros/humble/rmw-implementation-cmake/default.nix

25 lines
854 B
Nix

# Copyright 2025 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.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmw-release/archive/release/humble/rmw_implementation_cmake/6.1.2-1.tar.gz";
name = "6.1.2-1.tar.gz";
sha256 = "0623986e11303787a91156a1edd2c5ef507d43b33ef6a5f4d7264a042ab3efcc";
};
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 ];
};
}