2017-02-28 16:28:39 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libjack2, alsaLib, libsndfile, liblo, lv2, qt5 }:
|
2013-03-06 01:06:16 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "drumkv1-${version}";
|
2017-03-25 17:04:44 +01:00
|
|
|
version = "0.8.1";
|
2013-03-06 01:06:16 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/drumkv1/${name}.tar.gz";
|
2017-03-25 17:04:44 +01:00
|
|
|
sha256 = "0l6kjb1q9vslwy56836a0c65mf8z8ycam5vzz3k4qvd8g74bs1zq";
|
2013-03-06 01:06:16 +01:00
|
|
|
};
|
|
|
|
|
2016-11-01 02:48:20 +01:00
|
|
|
buildInputs = [ libjack2 alsaLib libsndfile liblo lv2 qt5.qtbase qt5.qttools ];
|
2013-03-06 01:06:16 +01:00
|
|
|
|
2017-02-28 16:28:39 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2013-03-06 01:06:16 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-03-06 22:26:08 +01:00
|
|
|
description = "An old-school drum-kit sampler synthesizer with stereo fx";
|
2013-03-06 01:06:16 +01:00
|
|
|
homepage = http://drumkv1.sourceforge.net/;
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
};
|
2015-06-27 09:17:52 +02:00
|
|
|
}
|