mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00

Some checks failed
Build / build (humble, aarch64-linux) (push) Has been cancelled
Build / build (humble, x86_64-linux) (push) Has been cancelled
Build / build (jazzy, aarch64-linux) (push) Has been cancelled
Build / build (jazzy, x86_64-linux) (push) Has been cancelled
Build / build (noetic, aarch64-linux) (push) Has been cancelled
Build / build (noetic, x86_64-linux) (push) Has been cancelled
Build / build (rolling, aarch64-linux) (push) Has been cancelled
Build / build (rolling, x86_64-linux) (push) Has been cancelled
25 lines
824 B
Nix
25 lines
824 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-ros, gtest-vendor }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-fuse-doc";
|
|
version = "1.2.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/fuse-release/archive/release/rolling/fuse_doc/1.2.2-1.tar.gz";
|
|
name = "1.2.2-1.tar.gz";
|
|
sha256 = "d370c96bc884e90818adcf445abe1fa51c4a9217f1aba76a91ec904ac2b43a64";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
propagatedBuildInputs = [ ament-cmake-ros gtest-vendor ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "The fuse_doc package provides documentation and examples for the fuse package.";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|