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

26 lines
856 B
Nix
Raw Permalink Normal View History

# 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-rolling-rmw-implementation-cmake";
version = "7.9.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmw-release/archive/release/rolling/rmw_implementation_cmake/7.9.0-1.tar.gz";
name = "7.9.0-1.tar.gz";
sha256 = "c668b084c461e064fafd0534c04efbf3463a93e4ca730bc8d9a9044d8e404179";
};
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 ];
};
}