1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/kinetic/fetch-calibration/default.nix

23 lines
731 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, robot-calibration, catkin }:
buildRosPackage {
pname = "ros-kinetic-fetch-calibration";
version = "0.7.15";
src = fetchurl {
url = https://github.com/fetchrobotics-gbp/fetch_ros-release/archive/release/kinetic/fetch_calibration/0.7.15-0.tar.gz;
sha256 = "cf1827f5e4852f4a2eed515deb1b1fd6788b25f7d55376a0d519ff49cb9b6ca3";
};
propagatedBuildInputs = [ robot-calibration ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Launch and configuration files for calibrating Fetch using the 'robot_calibration' package.'';
#license = lib.licenses.Apache2;
};
}