Merge pull request #43606 from MarcFontaine/xlog

xlog: init at 2.0.15
This commit is contained in:
lewo 2018-07-19 09:12:38 +02:00 committed by GitHub
commit fd3b874ee6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv, fetchurl, glib, gtk2, pkgconfig, hamlib }:
stdenv.mkDerivation rec {
name = "xlog-${version}";
version = "2.0.15";
src = fetchurl {
url = "http://download.savannah.gnu.org/releases/xlog/${name}.tar.gz";
sha256 = "0an883wqw3zwpw8nqinm9cb17hp2xw9vf603k4l2345p61jqdw2j";
};
buildInputs = [ glib pkgconfig gtk2 hamlib ];
meta = with stdenv.lib; {
description = "An amateur radio logging program";
longDescription =
'' Xlog is an amateur radio logging program.
It supports cabrillo, ADIF, trlog (format also used by tlf),
and EDI (ARRL VHF/UHF contest format) and can import twlog, editest and OH1AA logbook files.
Xlog is able to do DXCC lookups and will display country information, CQ and ITU zone,
location in latitude and longitude and distance and heading in kilometers or miles,
both for short and long path.
'';
homepage = http://www.nongnu.org/xlog;
maintainers = [ maintainers.mafo ];
license = licenses.gpl3;
platforms = platforms.unix;
};
}

View file

@ -21785,6 +21785,8 @@ with pkgs;
xinput_calibrator = callPackage ../tools/X11/xinput_calibrator { };
xlog = callPackage ../applications/misc/xlog { };
xmagnify = callPackage ../tools/X11/xmagnify { };
xosd = callPackage ../misc/xosd { };