2020-09-25 13:19:46 +00:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-09-25 13:19:46 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, moose-gazebo }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-moose-simulator";
|
|
|
|
version = "0.1.3-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/clearpath-gbp/moose_simulator-release/archive/release/melodic/moose_simulator/0.1.3-1.tar.gz";
|
|
|
|
name = "0.1.3-1.tar.gz";
|
|
|
|
sha256 = "6e07c0ddc729792bd9f1437f7ec0498958624b2675eb966aa07d012371977070";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
|
|
|
propagatedBuildInputs = [ moose-gazebo ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Packages for simulating Moose'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|