summary refs log tree commit diff
path: root/pkgs/applications/radio/fldigi/default.nix
blob: a71e4f4bbd4177f4f6844d4011c72232aa1fbe70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{ lib
, stdenv
, fetchurl
, hamlib
, fltk14
, libjpeg
, libpng
, portaudio
, libsndfile
, libsamplerate
, libpulseaudio
, libXinerama
, gettext
, pkg-config
, alsa-lib
}:

stdenv.mkDerivation rec {
  pname = "fldigi";
  version = "4.1.18";

  src = fetchurl {
    url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
    sha256 = "sha256-PH/YSrOoS6RSWyUenVYSDa7mJqODFoSpdP2tR2+QJw0=";
  };

  buildInputs = [
    libXinerama
    gettext
    hamlib
    fltk14
    libjpeg
    libpng
    portaudio
    libsndfile
    libsamplerate
    libpulseaudio
    pkg-config
    alsa-lib
  ];

  meta = with lib; {
    description = "Digital modem program";
    homepage = "https://sourceforge.net/projects/fldigi/";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ relrod ftrvxmtrx ];
    platforms = platforms.linux;
  };
}