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, jack2, libsndfile, lv2, qt4 }:
{ stdenv, fetchurl, libjack2, libsndfile, lv2, qt4 }:
stdenv.mkDerivation rec {
name = "samplv1-${version}";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "1c62fpfl9xv93m04hfh72vzbljr0c5p409vzf3xxmvj9x610yx1w";
};
buildInputs = [ jack2 libsndfile lv2 qt4 ];
buildInputs = [ libjack2 libsndfile lv2 qt4 ];
meta = with stdenv.lib; {
description = "An old-school all-digital polyphonic sampler synthesizer with stereo fx";
@@ -18,4 +18,4 @@ stdenv.mkDerivation rec {
platforms = platforms.linux;
maintainers = [ maintainers.goibhniu ];
};
}
}