You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
707 B
23 lines
707 B
{ stdenv, fetchurl, pkgconfig, libjack2, alsaLib, libsndfile, liblo, lv2, qt5 }: |
|
|
|
stdenv.mkDerivation rec { |
|
pname = "drumkv1"; |
|
version = "0.9.9"; |
|
|
|
src = fetchurl { |
|
url = "mirror://sourceforge/drumkv1/${pname}-${version}.tar.gz"; |
|
sha256 = "02sa29fdjgwcf7izly685gxvga3bxyyqvskvfiisgm2xg3h9r983"; |
|
}; |
|
|
|
buildInputs = [ libjack2 alsaLib libsndfile liblo lv2 qt5.qtbase qt5.qttools ]; |
|
|
|
nativeBuildInputs = [ pkgconfig ]; |
|
|
|
meta = with stdenv.lib; { |
|
description = "An old-school drum-kit sampler synthesizer with stereo fx"; |
|
homepage = http://drumkv1.sourceforge.net/; |
|
license = licenses.gpl2Plus; |
|
platforms = platforms.linux; |
|
maintainers = [ maintainers.goibhniu ]; |
|
}; |
|
}
|
|
|