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

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