fd9f28c396
Also migrate from qt4 to qt5 (#33248)
27 lines
685 B
Nix
27 lines
685 B
Nix
{ mkDerivation, lib, fetchurl, cmake, pkg-config
|
|
, qttools, qtx11extras, drumstick
|
|
, docbook-xsl-nons
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "vmpk";
|
|
version = "0.7.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/${pname}/${version}/${pname}-${version}.tar.bz2";
|
|
sha256 = "5oLrjQADg59Mxpb0CNLQAE574IOSYLDLJNaQ/9q2cMQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config qttools docbook-xsl-nons ];
|
|
|
|
buildInputs = [ qtx11extras drumstick ];
|
|
|
|
meta = with lib; {
|
|
description = "Virtual MIDI Piano Keyboard";
|
|
homepage = "http://vmpk.sourceforge.net/";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ orivej ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|