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/foxy/leo-desktop/default.nix

26 lines
777 B
Nix
Raw Permalink Normal View History

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, leo, leo-viz }:
buildRosPackage {
pname = "ros-foxy-leo-desktop";
version = "1.0.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/leo_desktop-release/archive/release/foxy/leo_desktop/1.0.0-1.tar.gz";
name = "1.0.0-1.tar.gz";
sha256 = "1496c86b10fea2bc29c9100b328e002245457934e130cfa0a753993474f0b41f";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ leo leo-viz ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Metapackage of software for operating Leo Rover from ROS desktop'';
license = with lib.licenses; [ mit ];
};
}