nixpkgs/pkgs/applications/audio/drumkv1/default.nix

22 lines
607 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libjack2, libsndfile, lv2, qt4 }:
stdenv.mkDerivation rec {
name = "drumkv1-${version}";
2015-08-26 20:51:14 +00:00
version = "0.7.1";
src = fetchurl {
url = "mirror://sourceforge/drumkv1/${name}.tar.gz";
2015-08-26 20:51:14 +00:00
sha256 = "0mpf8akqaakg7vbn8gba0ns64hzhn5xzh1qxqpchcv32swn21cq4";
};
buildInputs = [ libjack2 libsndfile lv2 qt4 ];
meta = with stdenv.lib; {
2013-03-06 21:26:08 +00:00
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 ];
};
}