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

26 lines
854 B
Nix
Raw Normal View History

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