commit
3ea51d014d
1 changed files with 35 additions and 9 deletions
|
@ -1,23 +1,49 @@
|
||||||
{ lib, stdenv, fetchurl, hamlib, fltk14, libjpeg, libpng, portaudio, libsndfile,
|
{ lib
|
||||||
libsamplerate, libpulseaudio, libXinerama, gettext, pkg-config, alsa-lib }:
|
, stdenv
|
||||||
|
, fetchurl
|
||||||
|
, hamlib
|
||||||
|
, fltk14
|
||||||
|
, libjpeg
|
||||||
|
, libpng
|
||||||
|
, portaudio
|
||||||
|
, libsndfile
|
||||||
|
, libsamplerate
|
||||||
|
, libpulseaudio
|
||||||
|
, libXinerama
|
||||||
|
, gettext
|
||||||
|
, pkg-config
|
||||||
|
, alsa-lib
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "4.1.18";
|
|
||||||
pname = "fldigi";
|
pname = "fldigi";
|
||||||
|
version = "4.1.18";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
|
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
|
||||||
sha256 = "sha256-PH/YSrOoS6RSWyUenVYSDa7mJqODFoSpdP2tR2+QJw0=";
|
sha256 = "sha256-PH/YSrOoS6RSWyUenVYSDa7mJqODFoSpdP2tR2+QJw0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ libXinerama gettext hamlib fltk14 libjpeg libpng portaudio
|
buildInputs = [
|
||||||
libsndfile libsamplerate libpulseaudio pkg-config alsa-lib ];
|
libXinerama
|
||||||
|
gettext
|
||||||
|
hamlib
|
||||||
|
fltk14
|
||||||
|
libjpeg
|
||||||
|
libpng
|
||||||
|
portaudio
|
||||||
|
libsndfile
|
||||||
|
libsamplerate
|
||||||
|
libpulseaudio
|
||||||
|
pkg-config
|
||||||
|
alsa-lib
|
||||||
|
];
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
description = "Digital modem program";
|
description = "Digital modem program";
|
||||||
homepage = "https://sourceforge.net/projects/fldigi/";
|
homepage = "https://sourceforge.net/projects/fldigi/";
|
||||||
license = lib.licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = with lib.maintainers; [ relrod ftrvxmtrx ];
|
maintainers = with maintainers; [ relrod ftrvxmtrx ];
|
||||||
platforms = lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue