Merge pull request #32468 from magnetophon/qsynth

qsynth: 0.3.9 -> 0.4.4
This commit is contained in:
Jörg Thalheim 2017-12-09 07:53:56 +00:00 committed by GitHub
commit 398478df2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 5 deletions

View File

@ -1,15 +1,17 @@
{ stdenv, fetchurl, alsaLib, fluidsynth, libjack2, qt4 }:
{ stdenv, fetchurl, alsaLib, fluidsynth, libjack2, qtbase, qttools, qtx11extras, cmake, pkgconfig }:
stdenv.mkDerivation rec {
name = "qsynth-${version}";
version = "0.3.9";
version = "0.4.4";
src = fetchurl {
url = "mirror://sourceforge/qsynth/${name}.tar.gz";
sha256 = "08kyn6cl755l9i1grzjx8yi3f8mgiz4gx0hgqad1n0d8yz85087b";
sha256 = "0qhfnikx3xcllkvs60kj6vcf2rwwzh31y41qkk6kwfhzgd219y8f";
};
buildInputs = [ alsaLib fluidsynth libjack2 qt4 ];
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ alsaLib fluidsynth libjack2 qtbase qttools qtx11extras ];
meta = with stdenv.lib; {
description = "Fluidsynth GUI";

View File

@ -16402,7 +16402,7 @@ with pkgs;
qstopmotion = callPackage ../applications/video/qstopmotion { };
qsynth = callPackage ../applications/audio/qsynth { };
qsynth = libsForQt5.callPackage ../applications/audio/qsynth { };
qtbitcointrader = callPackage ../applications/misc/qtbitcointrader { };