mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
23 lines
731 B
Nix
23 lines
731 B
Nix
![]() |
|
||
|
# 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;
|
||
|
};
|
||
|
}
|