1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-15 06:31:44 +03:00
nix-ros-overlay/melodic/fetch-simulation/default.nix

23 lines
790 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, fetch-gazebo, catkin, fetch-gazebo-demo, fetchit-challenge }:
buildRosPackage {
pname = "ros-melodic-fetch-simulation";
version = "0.9.2-r1";
src = fetchurl {
url = https://github.com/fetchrobotics-gbp/fetch_gazebo-release/archive/release/melodic/fetch_simulation/0.9.2-1.tar.gz;
sha256 = "76b37846fcf07da29ab58753137ef1f324d53e8f6ca225fe46310e6673c7d801";
};
propagatedBuildInputs = [ fetch-gazebo fetch-gazebo-demo fetchit-challenge ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Fetch Simulation, packages for working with Fetch and Freight in Gazebo'';
license = with lib.licenses; [ bsdOriginal ];
};
}