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/foxy/rmf-demos-maps/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

24 lines
795 B
Nix

# Copyright 2023 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-foxy-rmf-demos-maps";
version = "1.3.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmf_demos-release/archive/release/foxy/rmf_demos_maps/1.3.2-1.tar.gz";
name = "1.3.2-1.tar.gz";
sha256 = "e6825a90cdab87f37689211b8faccb30e2a37b39eb3c37f16dad3fea3889c2a3";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake rmf-building-map-tools ros2run ];
nativeBuildInputs = [ ament-cmake rmf-building-map-tools ros2run ];
meta = {
description = ''A package containing demo maps for rmf'';
license = with lib.licenses; [ asl20 ];
};
}