mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-21 14:48:39 +03:00
26 lines
843 B
Nix
26 lines
843 B
Nix
![]() |
|
||
|
# Copyright 2022 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.5.1-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/ament_index-release/archive/release/rolling/ament_index_cpp/1.5.1-1.tar.gz";
|
||
|
name = "1.5.1-1.tar.gz";
|
||
|
sha256 = "afd42192b947610d3d92a173c21fa552bc8657a09d6499cb7af57fa3036cd0ca";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|