1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/jazzy/clearpath-nav2-demos/default.nix

26 lines
938 B
Nix

# 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, clearpath-config, nav2-bringup, slam-toolbox }:
buildRosPackage {
pname = "ros-jazzy-clearpath-nav2-demos";
version = "2.0.0-r1";
src = fetchurl {
url = "https://github.com/clearpath-gbp/clearpath_nav2_demos-release/archive/release/jazzy/clearpath_nav2_demos/2.0.0-1.tar.gz";
name = "2.0.0-1.tar.gz";
sha256 = "9a31afcdeb0cc163fcf5f97ef69630ab2d76aa7c34eb95d2d7c4cbecc3d1b87a";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ clearpath-config nav2-bringup slam-toolbox ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Nav2 demos for Clearpath robots";
license = with lib.licenses; [ bsdOriginal ];
};
}