2020-10-23 13:30:31 +00:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-10-23 13:30:31 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, leo, leo-bringup, leo-fw }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-leo-robot";
|
2021-04-30 12:50:24 +00:00
|
|
|
version = "1.2.0-r1";
|
2020-10-23 13:30:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-04-30 12:50:24 +00:00
|
|
|
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";
|
2020-10-23 13:30:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|