nixpkgs/pkgs/applications/misc/multimon-ng/default.nix
R. RyanTM 0307ce3d0e multimon-ng: 1.1.4 -> 1.1.5
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/multimon-ng/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 1.1.5 with grep in /nix/store/x3cfglkwjspjg0gv4vlalwzw7wykp2p3-multimon-ng-1.1.5
- directory tree listing: https://gist.github.com/f266692b50ec442e1bb40052b1440be8
2018-04-20 02:38:35 -07:00

44 lines
1.2 KiB
Nix

{ stdenv, fetchFromGitHub, qt4, qmake4Hook, libpulseaudio }:
let
version = "1.1.5";
in
stdenv.mkDerivation {
name = "multimon-ng-${version}";
src = fetchFromGitHub {
owner = "EliasOenal";
repo = "multimon-ng";
rev = "${version}";
sha256 = "00h884hn5afrx5i52xmngpsv3204hgb7xpw9my3lm8sajmfrjj1g";
};
buildInputs = [ qt4 libpulseaudio ];
nativeBuildInputs = [ qmake4Hook ];
qmakeFlags = [ "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 ];
};
}