fldigi: 4.1.18 -> 4.1.19

Also fix the build of fldigi on darwin machines.
This commit is contained in:
Matthew Leach 2021-07-25 22:18:11 +01:00
parent 0802970566
commit 4d2f142eb9

View file

@ -13,17 +13,20 @@
, gettext
, pkg-config
, alsa-lib
, udev
}:
stdenv.mkDerivation rec {
pname = "fldigi";
version = "4.1.18";
version = "4.1.19";
src = fetchurl {
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
sha256 = "sha256-PH/YSrOoS6RSWyUenVYSDa7mJqODFoSpdP2tR2+QJw0=";
sha256 = "0zvfkmvxi31ccbpxvimkcrqrkf3wzr1pgja2ny04srrakl8ff5c7";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [
libXinerama
gettext
@ -34,16 +37,13 @@ stdenv.mkDerivation rec {
portaudio
libsndfile
libsamplerate
libpulseaudio
pkg-config
alsa-lib
];
] ++ lib.optionals (stdenv.isLinux) [ libpulseaudio alsa-lib udev ];
meta = with lib; {
description = "Digital modem program";
homepage = "https://sourceforge.net/projects/fldigi/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ relrod ftrvxmtrx ];
platforms = platforms.linux;
platforms = platforms.unix;
};
}