mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
25 lines
872 B
Nix
25 lines
872 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, calibration-launch, catkin }:
|
|
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";
|
|
sha256 = "860ae9436ebb32f82961749186b07d6d8c5f2885897baf629226b5e0db51b588";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
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 ];
|
|
};
|
|
}
|