1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/melodic/calibration-setup-helper/default.nix

26 lines
872 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, calibration-launch, catkin }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-calibration-setup-helper";
version = "0.10.14";
src = fetchurl {
url = "https://github.com/ros-gbp/calibration-release/archive/release/melodic/calibration_setup_helper/0.10.14-0.tar.gz";
name = "0.10.14-0.tar.gz";
2019-03-21 00:14:59 -04:00
sha256 = "860ae9436ebb32f82961749186b07d6d8c5f2885897baf629226b5e0db51b588";
};
buildType = "catkin";
2019-03-21 00:14:59 -04:00
propagatedBuildInputs = [ calibration-launch ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''This package contains a script to generate calibration launch and configurationfiles for your robot.
which is based on Michael Ferguson's calibration code'';
license = with lib.licenses; [ asl20 ];
2019-03-21 00:14:59 -04:00
};
}