2021-01-19 06:50:56 +00:00
|
|
|
{ mkDerivation, lib, fetchurl, pkg-config, libjack2
|
2020-11-05 16:47:20 +00:00
|
|
|
, alsaLib, liblo, libsndfile, lv2, qtbase, qttools
|
|
|
|
, rubberband
|
|
|
|
}:
|
2013-03-06 00:06:16 +00:00
|
|
|
|
2020-11-05 16:47:20 +00:00
|
|
|
mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "samplv1";
|
2020-11-05 16:47:20 +00:00
|
|
|
version = "0.9.18";
|
2013-03-06 00:06:16 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/samplv1/${pname}-${version}.tar.gz";
|
2020-11-05 16:47:20 +00:00
|
|
|
sha256 = "ePhM9OTLJp1Wa2D9Y1Dqq/69WlEhEp3ih9yNUIJU5Y4=";
|
2013-03-06 00:06:16 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ qttools pkg-config ];
|
2013-03-06 00:06:16 +00:00
|
|
|
|
2020-11-05 16:47:20 +00:00
|
|
|
buildInputs = [ libjack2 alsaLib liblo libsndfile lv2 qtbase rubberband ];
|
2017-02-28 15:29:19 +00:00
|
|
|
|
2020-11-05 16:47:20 +00:00
|
|
|
meta = with lib; {
|
2013-03-06 00:06:16 +00:00
|
|
|
description = "An old-school all-digital polyphonic sampler synthesizer with stereo fx";
|
2020-03-28 11:31:57 +00:00
|
|
|
homepage = "http://samplv1.sourceforge.net/";
|
2013-03-06 00:06:16 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
};
|
2015-06-27 08:17:52 +01:00
|
|
|
}
|