mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
988 B
Nix
24 lines
988 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, fetch-calibration, fetch-depth-layer, fetch-description, fetch-ikfast-plugin, fetch-maps, fetch-moveit-config, fetch-navigation, fetch-teleop }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-fetch-ros";
|
|
version = "0.8.3-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/fetchrobotics-gbp/fetch_ros-release/archive/release/melodic/fetch_ros/0.8.3-1.tar.gz";
|
|
name = "0.8.3-1.tar.gz";
|
|
sha256 = "0352c66a6b59ab197e607345b2fe5c6f68de8600eaa6dc0b241e7e47b9984888";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ fetch-calibration fetch-depth-layer fetch-description fetch-ikfast-plugin fetch-maps fetch-moveit-config fetch-navigation fetch-teleop ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Fetch ROS, packages for working with Fetch and Freight'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|