1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/rolling/rmf-visualization-building-systems/default.nix

25 lines
1,020 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, geometry-msgs, pythonPackages, rmf-building-map-msgs, rmf-door-msgs, rmf-lift-msgs, rmf-visualization-msgs }:
buildRosPackage {
pname = "ros-rolling-rmf-visualization-building-systems";
version = "2.2.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmf_visualization-release/archive/release/rolling/rmf_visualization_building_systems/2.2.1-1.tar.gz";
name = "2.2.1-1.tar.gz";
sha256 = "9a4460a21041332e376b445b94d77c341730fe547f673ce0e1bd6a26f4f6f763";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
propagatedBuildInputs = [ geometry-msgs rmf-building-map-msgs rmf-door-msgs rmf-lift-msgs rmf-visualization-msgs ];
meta = {
description = ''A visualizer for doors and lifts'';
license = with lib.licenses; [ asl20 ];
};
}