4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, qt4, qmake4Hook, libpulseaudio }:
|
|
let
|
|
version = "1.1.9";
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "multimon-ng";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "EliasOenal";
|
|
repo = "multimon-ng";
|
|
rev = version;
|
|
sha256 = "01716cfhxfzsab9zjply9giaa4nn4b7rm3p3vizrwi7n253yiwm2";
|
|
};
|
|
|
|
buildInputs = [ qt4 libpulseaudio ];
|
|
|
|
nativeBuildInputs = [ qmake4Hook ];
|
|
|
|
qmakeFlags = [ "multimon-ng.pro" ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp multimon-ng $out/bin
|
|
'';
|
|
|
|
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.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|