mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-26 16:45:32 +03:00
25 lines
844 B
Nix
25 lines
844 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-lint-auto, ament-lint-common }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-ament-index-cpp";
|
|
version = "1.10.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/ament_index-release/archive/release/rolling/ament_index_cpp/1.10.1-1.tar.gz";
|
|
name = "1.10.1-1.tar.gz";
|
|
sha256 = "748d548c1551872bf8bc5e59cbfca39bd1505f4029a52bf705127c7eddcf7bcc";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "C++ API to access the ament resource index.";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|