about summary refs log tree commit diff
path: root/pkgs/applications/misc/multimon-ng
diff options
context:
space:
mode:
authorMoritz Ulrich <moritz@tarn-vedra.de>2015-07-27 13:12:29 +0200
committerMoritz Ulrich <moritz@tarn-vedra.de>2015-07-28 00:05:55 +0200
commit51c82551eeba1aefb25a469139e1a3becc40ee67 (patch)
tree2a6a450f677180a48f236290c9f6f3da444f467a /pkgs/applications/misc/multimon-ng
parent0391b7b0a8d5cff0311ec7dd238e5d679b5290da (diff)
downloadnixlib-51c82551eeba1aefb25a469139e1a3becc40ee67.tar
nixlib-51c82551eeba1aefb25a469139e1a3becc40ee67.tar.gz
nixlib-51c82551eeba1aefb25a469139e1a3becc40ee67.tar.bz2
nixlib-51c82551eeba1aefb25a469139e1a3becc40ee67.tar.lz
nixlib-51c82551eeba1aefb25a469139e1a3becc40ee67.tar.xz
nixlib-51c82551eeba1aefb25a469139e1a3becc40ee67.tar.zst
nixlib-51c82551eeba1aefb25a469139e1a3becc40ee67.zip
multimon-ng: New package.
A digital baseband audio protocol decoder.
Diffstat (limited to 'pkgs/applications/misc/multimon-ng')
-rw-r--r--pkgs/applications/misc/multimon-ng/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/applications/misc/multimon-ng/default.nix b/pkgs/applications/misc/multimon-ng/default.nix
new file mode 100644
index 000000000000..794746653f75
--- /dev/null
+++ b/pkgs/applications/misc/multimon-ng/default.nix
@@ -0,0 +1,41 @@
+{ stdenv, fetchFromGitHub, qt4, libpulseaudio }:
+let
+  version = "1.0.0";
+in
+stdenv.mkDerivation {
+  name = "multimon-ng-${version}";
+
+  src = fetchFromGitHub {
+    owner = "EliasOenal";
+    repo = "multimon-ng";
+    rev = "4cc984f35f859539c94aa56d3fc6218a6de51148";
+    sha256 = "12z6f0ra2k0qh56pcvnwvlxd3msvr6yr97jvs7w5kf42jqbxdsga";
+  };
+
+  buildInputs = [ qt4 libpulseaudio ];
+
+  preBuild = "qmake multimon-ng.pro";
+
+  installPhase = ''
+    mkdir -p $out/bin
+    cp multimon-ng $out/bin
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Multimon is a digital baseband audio protocol decoder.";
+    longDescription = ''
+      multimon-ng a fork of multimon, a digital baseband audio
+      protocol decoder for common signaling modes in commercial and
+      amateur radio data services. It decodes the following digital
+      transmission modes:
+
+      POCSAG512 POCSAG1200 POCSAG2400 EAS UFSK1200 CLIPFSK AFSK1200
+      AFSK2400 AFSK2400_2 AFSK2400_3 HAPN4800 FSK9600 DTMF ZVEI1 ZVEI2
+      ZVEI3 DZVEI PZVEI EEA EIA CCIR MORSE CW
+    '';
+    homepage = "https://github.com/EliasOenal/multimon-ng";
+    license = licenses.gpl2;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ the-kenny ];
+  };
+}