summary refs log tree commit diff
path: root/pkgs/applications/radio/qsstv/default.nix
blob: 555264ac4850d75e02d30ae95f4ab63220dfdb2a (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
{ mkDerivation, lib, fetchurl, qtbase, qmake, openjpeg, pkg-config, fftw,
  libpulseaudio, alsa-lib, hamlib, libv4l, fftwFloat }:

mkDerivation rec {
  version = "9.4.4";
  pname = "qsstv";

  src = fetchurl {
    url = "http://users.telenet.be/on4qz/qsstv/downloads/qsstv_${version}.tar.gz";
    sha256 = "0f9hx6sy418cb23fadll298pqbc5l2lxsdivi4vgqbkvx7sw58zi";
  };

  enableParallelBuilding = true;

  nativeBuildInputs = [
    qmake
    pkg-config
  ];

  buildInputs = [ qtbase openjpeg fftw libpulseaudio alsa-lib hamlib libv4l
                  fftwFloat ];

  postInstall = ''
    # Install desktop icon
    install -D qsstv/icons/qsstv.png $out/share/pixmaps/qsstv.png
  '';

  meta = with lib; {
    description = "Qt-based slow-scan TV and fax";
    homepage = "http://users.telenet.be/on4qz/";
    platforms = platforms.linux;
    license = lib.licenses.gpl3;
    maintainers = with lib.maintainers; [ hax404 ];
  };
}