Merge pull request #131521 from hexagonal-sun/fldigi-bump

fldigi: 4.1.18 -> 4.1.19
This commit is contained in:
Sandro 2021-08-05 09:30:09 +02:00 committed by GitHub
commit 71b64e8307
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;
};
}