about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/audio/qsynth/default.nix
blob: a24625ca7de81c2779eee5b305582442f0b57a05 (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
{ lib, fetchurl, alsa-lib, fluidsynth, libjack2, autoconf, pkg-config
, mkDerivation, qtbase, qttools, qtx11extras
}:

mkDerivation  rec {
  pname = "qsynth";
  version = "0.9.4";

  src = fetchurl {
    url = "mirror://sourceforge/qsynth/${pname}-${version}.tar.gz";
    sha256 = "sha256-dlgIkMde7uv4UlMKEPhtZ7MfSTBc7RvHs+Q2yk+G/JM=";
  };

  nativeBuildInputs = [ autoconf pkg-config ];

  buildInputs = [ alsa-lib fluidsynth libjack2 qtbase qttools qtx11extras ];

  enableParallelBuilding = true;
  # Missing install depends:
  #   lrelease error: Parse error at src/translations/qsynth_ru.ts:1503:33: Premature end of document.
  #   make: *** [Makefile:107: src/translations/qsynth_ru.qm] Error 1
  enableParallelInstalling = false;

  meta = with lib; {
    description = "Fluidsynth GUI";
    homepage = "https://sourceforge.net/projects/qsynth";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ goibhniu ];
    platforms = platforms.linux;
  };
}