summary refs log tree commit diff
path: root/pkgs/applications/audio/qsynth/default.nix
blob: 96221348f88c233892dae414b2733c9af93a7c43 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, alsaLib, fluidsynth, jackaudio, qt4 }:

stdenv.mkDerivation  rec {
  name = "qsynth-${version}";
  version = "0.3.6";

  src = fetchurl {
    url = "mirror://sourceforge/qsynth/${name}.tar.gz";
    sha256 = "0g7vaffpgs7v2p71ml5p7fzxz50mhlaklgf9zk4wbfk1hslqv5mm";
  };

  buildInputs = [ alsaLib fluidsynth jackaudio qt4 ];

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