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

24 lines
705 B
Nix
Raw Normal View History

2017-02-28 18:28:39 +03:00
{ stdenv, fetchurl, pkgconfig, libjack2, alsaLib, libsndfile, liblo, lv2, qt5 }:
stdenv.mkDerivation rec {
name = "drumkv1-${version}";
version = "0.9.9";
src = fetchurl {
url = "mirror://sourceforge/drumkv1/${name}.tar.gz";
sha256 = "02sa29fdjgwcf7izly685gxvga3bxyyqvskvfiisgm2xg3h9r983";
};
2016-11-01 04:48:20 +03:00
buildInputs = [ libjack2 alsaLib libsndfile liblo lv2 qt5.qtbase qt5.qttools ];
2017-02-28 18:28:39 +03:00
nativeBuildInputs = [ pkgconfig ];
meta = with stdenv.lib; {
2013-03-07 01:26:08 +04: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 ];
};
}