62d0a320b3
This reverts commit bdb77826d9
.
Jack1 is not obsolete and neither jack1 nor jack2 is called 'jackaudio'.
Q: What's the difference between Jack1 and Jack2?
A: http://trac.jackaudio.org/wiki/Q_differenc_jack1_jack2
30 lines
864 B
Nix
30 lines
864 B
Nix
{ stdenv, fetchgit, alsaLib, cmake, gtk, jack2, libgnomecanvas
|
|
, libpthreadstubs, libsamplerate, libsndfile, libtool, libxml2
|
|
, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "petri-foo";
|
|
|
|
src = fetchgit {
|
|
url = https://github.com/licnep/Petri-Foo.git;
|
|
rev = "eef3b6efebe842d2fa18ed32b881fea4562b84e0";
|
|
sha256 = "a20c3f1a633500a65c099c528c7dc2405daa60738b64d881bb8f2036ae59913c";
|
|
};
|
|
|
|
buildInputs =
|
|
[ alsaLib cmake gtk jack2 libgnomecanvas libpthreadstubs
|
|
libsamplerate libsndfile libtool libxml2 pkgconfig
|
|
];
|
|
|
|
dontUseCmakeBuildDir=true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "MIDI controllable audio sampler";
|
|
longDescription = "a fork of Specimen";
|
|
homepage = http://petri-foo.sourceforge.net;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|