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/humble/rmf-demos-maps/default.nix

24 lines
735 B
Nix
Raw Normal View History

# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, rmf-building-map-tools, ros2run }:
buildRosPackage {
pname = "ros-humble-rmf-demos-maps";
version = "1.3.1-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmf_demos-release/archive/release/humble/rmf_demos_maps/1.3.1-3.tar.gz";
name = "1.3.1-3.tar.gz";
sha256 = "ecfec78eb84df0072f7190f75fdfca7b2b068ad4a4b0bb1e461154baeca04ab6";
};
buildType = "ament_cmake";
nativeBuildInputs = [ ament-cmake rmf-building-map-tools ros2run ];
meta = {
description = ''A package containing demo maps for rmf'';
license = with lib.licenses; [ asl20 ];
};
}