2020-11-12 23:50:31 +00:00
|
|
|
{ mkDerivation, lib, fetchurl, cmake, pkg-config
|
|
|
|
, qttools, qtx11extras, drumstick
|
|
|
|
, docbook-xsl-nons
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-11-12 23:50:31 +00:00
|
|
|
mkDerivation rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "vmpk";
|
2020-11-12 23:50:31 +00:00
|
|
|
version = "0.7.2";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-08-20 17:08:02 +00:00
|
|
|
url = "mirror://sourceforge/${pname}/${version}/${pname}-${version}.tar.bz2";
|
2020-11-12 23:50:31 +00:00
|
|
|
sha256 = "5oLrjQADg59Mxpb0CNLQAE574IOSYLDLJNaQ/9q2cMQ=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2020-11-12 23:50:31 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config qttools docbook-xsl-nons ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-11-12 23:50:31 +00:00
|
|
|
buildInputs = [ qtx11extras drumstick ];
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2020-11-12 23:50:31 +00:00
|
|
|
meta = with lib; {
|
2020-08-20 17:08:02 +00:00
|
|
|
description = "Virtual MIDI Piano Keyboard";
|
|
|
|
homepage = "http://vmpk.sourceforge.net/";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ orivej ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|