nixpkgs/pkgs/applications/audio/fldigi/default.nix

25 lines
824 B
Nix
Raw Normal View History

{ stdenv, fetchurl, hamlib, fltk13, libjpeg, libpng, portaudio, libsndfile,
libsamplerate, pulseaudio, libXinerama, gettext, pkgconfig, alsaLib }:
stdenv.mkDerivation rec {
2014-09-04 17:55:20 +01:00
version = "3.21.83";
pname = "fldigi";
name = "${pname}-${version}";
src = fetchurl {
url = "http://www.w1hkj.com/downloads/${pname}/${name}.tar.gz";
2014-09-04 17:55:20 +01:00
sha256 = "1fyg6dc6xnxb620rrhws60wj10lsgbwsmnhz8vc6ncspx8mx7019";
};
buildInputs = [ libXinerama gettext hamlib fltk13 libjpeg libpng portaudio
libsndfile libsamplerate pulseaudio pkgconfig alsaLib ];
meta = {
description = "Digital modem program";
homepage = http://www.w1hkj.com/Fldigi.html;
license = stdenv.lib.licenses.gpl3Plus;
maintainers = with stdenv.lib.maintainers; [ relrod ];
platforms = stdenv.lib.platforms.linux;
};
}