qsynth: 0.4.4 -> 0.5.0

+11 -3
+11 -3
pkgs/applications/audio/qsynth/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "qsynth-${version}"; 5 - version = "0.4.4"; 5 + version = "0.5.0"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://sourceforge/qsynth/${name}.tar.gz"; 9 - sha256 = "0qhfnikx3xcllkvs60kj6vcf2rwwzh31y41qkk6kwfhzgd219y8f"; 9 + sha256 = "1sr6vrz8z9r99j9xcix86lgcqldragb2ajmq1bnhr58d99sda584"; 10 10 }; 11 11 12 + # cmake is looking for qsynth.desktop.in and fails if it doesn't find it 13 + # seems like a bug and can presumable go in the next version after 0.5.0 14 + postPatch = '' 15 + mv src/qsynth.desktop src/qsynth.desktop.in 16 + ''; 17 + 12 18 nativeBuildInputs = [ cmake pkgconfig ]; 13 19 14 20 buildInputs = [ alsaLib fluidsynth libjack2 qtbase qttools qtx11extras ]; 15 21 22 + enableParallelBuilding = true; 23 + 16 24 meta = with stdenv.lib; { 17 25 description = "Fluidsynth GUI"; 18 26 homepage = https://sourceforge.net/projects/qsynth; 19 27 license = licenses.gpl2Plus; 28 + maintainers = with maintainers; [ goibhniu ]; 20 29 platforms = platforms.linux; 21 - maintainers = [ maintainers.goibhniu ]; 22 30 }; 23 31 }