2021-02-05 17:12:51 +00:00
|
|
|
{ mkDerivation, lib, fetchurl, pkg-config, libjack2
|
2021-06-28 23:13:55 +00:00
|
|
|
, alsa-lib, liblo, libsndfile, lv2, qtbase, qttools
|
2020-11-21 19:51:51 +00:00
|
|
|
, rubberband
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-11-21 19:51:51 +00:00
|
|
|
mkDerivation rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "samplv1";
|
2021-10-06 13:57:05 +00:00
|
|
|
version = "0.9.23";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/samplv1/${pname}-${version}.tar.gz";
|
2021-10-06 13:57:05 +00:00
|
|
|
sha256 = "sha256-eJA6ixH20Wv+cD2CKGomncyfJ4tfpOL3UrTeCkb5/q0=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ qttools pkg-config ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
buildInputs = [ libjack2 alsa-lib liblo libsndfile lv2 qtbase rubberband ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-11-21 19:51:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|