3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/audio/qsynth/default.nix

28 lines
745 B
Nix
Raw Normal View History

{ stdenv, fetchurl, alsaLib, fluidsynth, libjack2, autoconf, pkgconfig
, mkDerivation, qtbase, qttools, qtx11extras
}:
mkDerivation rec {
pname = "qsynth";
version = "0.6.0";
src = fetchurl {
url = "mirror://sourceforge/qsynth/${pname}-${version}.tar.gz";
sha256 = "173v0jqybi5szxxvj4n6wyg9sj54rmm6pxwhynx8wkm7nsbh0aij";
};
2019-04-04 17:17:56 +01:00
nativeBuildInputs = [ autoconf pkgconfig ];
2017-12-26 03:18:10 +00:00
buildInputs = [ alsaLib fluidsynth libjack2 qtbase qttools qtx11extras ];
2017-12-26 03:18:10 +00:00
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Fluidsynth GUI";
homepage = https://sourceforge.net/projects/qsynth;
license = licenses.gpl2Plus;
2017-12-26 03:18:10 +00:00
maintainers = with maintainers; [ goibhniu ];
2014-01-19 11:26:35 +00:00
platforms = platforms.linux;
};
}