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-dashboard-resources/default.nix
2022-06-11 13:21:09 -04:00

23 lines
694 B
Nix

# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake }:
buildRosPackage {
pname = "ros-humble-rmf-demos-dashboard-resources";
version = "1.3.1-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmf_demos-release/archive/release/humble/rmf_demos_dashboard_resources/1.3.1-3.tar.gz";
name = "1.3.1-3.tar.gz";
sha256 = "fae5064799c1174bf480addf339c30c82add7307817ca5ebf5fa0d591d5c3002";
};
buildType = "ament_cmake";
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Resource pack for RMF dashboard'';
license = with lib.licenses; [ asl20 ];
};
}