forked from mirrors/nixpkgs
f6f2f38a6e
Currently, we have a 'jack' package with attrname 'jack1d' and a 'jackdbus' package with attrname 'jackaudio'. Make it consistent 'jack1' and 'jack2' in both package name and attrname. This aligns the naming with what can be found on the JACK homepage. Q: what's the difference between jack1 and jack2? A: http://trac.jackaudio.org/wiki/Q_differenc_jack1_jack2
21 lines
600 B
Nix
21 lines
600 B
Nix
{ stdenv, fetchurl, jack2, libsndfile, lv2, qt4 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "drumkv1-${version}";
|
|
version = "0.4.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/drumkv1/${name}.tar.gz";
|
|
sha256 = "18rvfgblynlmklk25azmppibn1bdjid97hipa323gnzmxgq0rfjq";
|
|
};
|
|
|
|
buildInputs = [ jack2 libsndfile lv2 qt4 ];
|
|
|
|
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 ];
|
|
};
|
|
} |