Convert all jack references to libjack2

This commit is contained in:
William A. Kennington III
2015-06-27 00:17:52 -07:00
parent 8ce4cb4de8
commit 7297255019
73 changed files with 156 additions and 156 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, qt4, jack2, lv2 }:
{ stdenv, fetchurl, qt4, libjack2, lv2 }:
stdenv.mkDerivation rec {
name = "synthv1-${version}";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "19zyvrvnmi7ahwg121vl2q17j9y8ln6lvpj5wxxcwif5538q75iw";
};
buildInputs = [ qt4 jack2 lv2 ];
buildInputs = [ qt4 libjack2 lv2 ];
meta = with stdenv.lib; {
description = "An old-school 4-oscillator subtractive polyphonic synthesizer with stereo fx";
@@ -18,4 +18,4 @@ stdenv.mkDerivation rec {
platforms = platforms.linux;
maintainers = [ maintainers.goibhniu ];
};
}
}