2014-07-31 12:47:17 +02:00
|
|
|
{ stdenv, fetchurl, jack2, libsndfile, lv2, qt4 }:
|
2013-03-06 01:06:16 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "samplv1-${version}";
|
2014-09-30 20:37:03 +02:00
|
|
|
version = "0.5.1";
|
2013-03-06 01:06:16 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/samplv1/${name}.tar.gz";
|
2014-09-30 20:37:03 +02:00
|
|
|
sha256 = "155qq7gxyqn7sh8bbyhjk40lxl157lb2h539j4gqgv5jphz8g6wy";
|
2013-03-06 01:06:16 +01:00
|
|
|
};
|
|
|
|
|
2014-07-31 12:47:17 +02:00
|
|
|
buildInputs = [ jack2 libsndfile lv2 qt4 ];
|
2013-03-06 01:06:16 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "An old-school all-digital polyphonic sampler synthesizer with stereo fx";
|
|
|
|
homepage = http://samplv1.sourceforge.net/;
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
};
|
|
|
|
}
|