summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetophon.nl>2017-12-07 13:44:11 +0100
committerBart Brouns <bart@magnetophon.nl>2017-12-08 21:53:27 +0100
commit59782d8bff548e1b7f9570c8d3c94dc32868fa44 (patch)
treeea556587bb8e147dbbad9a47998e6c09565eb58f /pkgs/applications
parent11d0cccf56979f621a2e513bf3a921b46972615b (diff)
downloadnixlib-59782d8bff548e1b7f9570c8d3c94dc32868fa44.tar
nixlib-59782d8bff548e1b7f9570c8d3c94dc32868fa44.tar.gz
nixlib-59782d8bff548e1b7f9570c8d3c94dc32868fa44.tar.bz2
nixlib-59782d8bff548e1b7f9570c8d3c94dc32868fa44.tar.lz
nixlib-59782d8bff548e1b7f9570c8d3c94dc32868fa44.tar.xz
nixlib-59782d8bff548e1b7f9570c8d3c94dc32868fa44.tar.zst
nixlib-59782d8bff548e1b7f9570c8d3c94dc32868fa44.zip
qsynth: 0.3.9 -> 0.4.4
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/audio/qsynth/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/applications/audio/qsynth/default.nix b/pkgs/applications/audio/qsynth/default.nix
index 49d9e80be117..3435e3ed1630 100644
--- a/pkgs/applications/audio/qsynth/default.nix
+++ b/pkgs/applications/audio/qsynth/default.nix
@@ -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";