mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
22 lines
656 B
Nix
22 lines
656 B
Nix
{ stdenv, fetchurl, libjack2, alsaLib, libsndfile, liblo, lv2, qt5 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "drumkv1-${version}";
|
|
version = "0.7.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/drumkv1/${name}.tar.gz";
|
|
sha256 = "0cl1rbj26nsbvg9wzsh2j8xlx69xjxn29x46ypmy3939zbk81bi6";
|
|
};
|
|
|
|
buildInputs = [ libjack2 alsaLib libsndfile liblo lv2 qt5.qtbase qt5.qttools ];
|
|
|
|
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 ];
|
|
};
|
|
}
|