2017-02-28 15:29:19 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libjack2, alsaLib, liblo, libsndfile, lv2, qt5 }:
|
2013-03-06 00:06:16 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "samplv1";
|
2019-11-03 07:06:14 +00:00
|
|
|
version = "0.9.11";
|
2013-03-06 00:06:16 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "mirror://sourceforge/samplv1/${pname}-${version}.tar.gz";
|
2019-11-03 07:06:14 +00:00
|
|
|
sha256 = "17zs8kvvwqv00bm4lxpn09a5hxjlbz7k5mkl3k7jspw7rqn3djf2";
|
2013-03-06 00:06:16 +00:00
|
|
|
};
|
|
|
|
|
2016-11-01 01:52:20 +00:00
|
|
|
buildInputs = [ libjack2 alsaLib liblo libsndfile lv2 qt5.qtbase qt5.qttools];
|
2013-03-06 00:06:16 +00:00
|
|
|
|
2017-02-28 15:29:19 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2013-03-06 00:06:16 +00: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 ];
|
|
|
|
};
|
2015-06-27 07:17:52 +00:00
|
|
|
}
|