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/melodic/leo-robot/default.nix

25 lines
742 B
Nix
Raw Normal View History

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, leo, leo-bringup, leo-fw }:
buildRosPackage {
pname = "ros-melodic-leo-robot";
version = "1.2.0-r1";
src = fetchurl {
url = "https://github.com/fictionlab-gbp/leo_robot-release/archive/release/melodic/leo_robot/1.2.0-1.tar.gz";
name = "1.2.0-1.tar.gz";
sha256 = "2938d90306d1433d772c494bb527f88b02d654f41e482d0d3743471fdea326e5";
};
buildType = "catkin";
propagatedBuildInputs = [ leo leo-bringup leo-fw ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Metapackage of software to install on Leo Rover.'';
license = with lib.licenses; [ mit ];
};
}