2021-01-19 06:50:56 +00:00
|
|
|
{ mkDerivation, lib, fetchurl, pkg-config, libjack2
|
2021-06-10 03:57:09 +01:00
|
|
|
, alsa-lib, liblo, libsndfile, lv2, qtbase, qttools
|
2020-11-05 16:47:20 +00:00
|
|
|
, 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";
|
2021-08-28 00:10:53 +01:00
|
|
|
version = "0.9.23";
|
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";
|
2021-08-28 00:10:53 +01:00
|
|
|
sha256 = "sha256-eJA6ixH20Wv+cD2CKGomncyfJ4tfpOL3UrTeCkb5/q0=";
|
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
|
|
|
|
2021-06-10 03:57:09 +01:00
|
|
|
buildInputs = [ libjack2 alsa-lib 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
|
|
|
}
|