mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
22baca7dfb
qt4 was used to pull in X11 dependencies as well as qmake, but as upstream now supports cmake, just use that and be specific about the X11 dependency.
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, libpulseaudio, libX11 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "multimon-ng";
|
|
version = "1.1.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "EliasOenal";
|
|
repo = "multimon-ng";
|
|
rev = version;
|
|
sha256 = "01716cfhxfzsab9zjply9giaa4nn4b7rm3p3vizrwi7n253yiwm2";
|
|
};
|
|
|
|
buildInputs = [ libpulseaudio libX11 ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = with 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.gpl2Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ markuskowa ];
|
|
};
|
|
}
|