1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/melodic/fetch-calibration/default.nix

25 lines
794 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2021 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, robot-calibration }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-fetch-calibration";
version = "0.8.3-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/fetchrobotics-gbp/fetch_ros-release/archive/release/melodic/fetch_calibration/0.8.3-1.tar.gz";
name = "0.8.3-1.tar.gz";
sha256 = "3e2fafdcabe870e9a85de7e96582f8d42371e6cd23354f8f3da19f2331598178";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
2019-03-21 00:14:59 -04:00
propagatedBuildInputs = [ robot-calibration ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Launch and configuration files for calibrating Fetch using the 'robot_calibration' package.'';
license = with lib.licenses; [ asl20 ];
2019-03-21 00:14:59 -04:00
};
}