62d0a320b3
This reverts commit bdb77826d9
.
Jack1 is not obsolete and neither jack1 nor jack2 is called 'jackaudio'.
Q: What's the difference between Jack1 and Jack2?
A: http://trac.jackaudio.org/wiki/Q_differenc_jack1_jack2
27 lines
628 B
Nix
27 lines
628 B
Nix
{ stdenv, fetchurl, cmake, pkgconfig
|
|
, qt4, jack2
|
|
}:
|
|
|
|
let
|
|
version = "0.5.1";
|
|
in stdenv.mkDerivation rec {
|
|
name = "vmpk-${version}";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Virtual MIDI Piano Keyboard";
|
|
homepage = "http://vmpk.sourceforge.net/";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ iyzsong ];
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/vmpk/${version}/${name}.tar.bz2";
|
|
sha256 = "11fqnxgs9hr9255d93n7lazxzjwn8jpmn23nywdksh0pb1ffvfrc";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
buildInputs = [ qt4 jack2 ];
|
|
}
|