about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorlewo <lewo@abesis.fr>2018-07-19 09:12:38 +0200
committerGitHub <noreply@github.com>2018-07-19 09:12:38 +0200
commitfd3b874ee654d93fc479a644e04505952d336519 (patch)
tree1809f676214896f00d97c3609063b50f492274e0 /pkgs/applications/misc
parent8ab563d4df540c7c4eae8373fe40221b2c500944 (diff)
parent325dd796d1811b32d4e0b0a5dc27e4b79abe4347 (diff)
downloadnixlib-fd3b874ee654d93fc479a644e04505952d336519.tar
nixlib-fd3b874ee654d93fc479a644e04505952d336519.tar.gz
nixlib-fd3b874ee654d93fc479a644e04505952d336519.tar.bz2
nixlib-fd3b874ee654d93fc479a644e04505952d336519.tar.lz
nixlib-fd3b874ee654d93fc479a644e04505952d336519.tar.xz
nixlib-fd3b874ee654d93fc479a644e04505952d336519.tar.zst
nixlib-fd3b874ee654d93fc479a644e04505952d336519.zip
Merge pull request #43606 from MarcFontaine/xlog
xlog: init at 2.0.15
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/xlog/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/applications/misc/xlog/default.nix b/pkgs/applications/misc/xlog/default.nix
new file mode 100644
index 000000000000..3ba7062b7bb1
--- /dev/null
+++ b/pkgs/applications/misc/xlog/default.nix
@@ -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;
+  };
+
+}