2020-11-02 20:14:57 +01:00
|
|
|
{ mkDerivation, lib, fetchurl, cmake, pkg-config
|
|
|
|
, qttools, qtx11extras, drumstick
|
|
|
|
, docbook-xsl-nons
|
|
|
|
}:
|
2014-03-15 06:13:25 +01:00
|
|
|
|
2020-11-02 20:14:57 +01:00
|
|
|
mkDerivation rec {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "vmpk";
|
2020-11-02 20:14:57 +01:00
|
|
|
version = "0.7.2";
|
2014-03-15 06:13:25 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-08-09 11:48:23 +02:00
|
|
|
url = "mirror://sourceforge/${pname}/${version}/${pname}-${version}.tar.bz2";
|
2020-11-02 20:14:57 +01:00
|
|
|
sha256 = "5oLrjQADg59Mxpb0CNLQAE574IOSYLDLJNaQ/9q2cMQ=";
|
2014-03-15 06:13:25 +01:00
|
|
|
};
|
|
|
|
|
2020-11-02 20:14:57 +01:00
|
|
|
nativeBuildInputs = [ cmake pkg-config qttools docbook-xsl-nons ];
|
2014-03-15 06:13:25 +01:00
|
|
|
|
2020-11-02 20:14:57 +01:00
|
|
|
buildInputs = [ qtx11extras drumstick ];
|
2020-08-09 11:48:23 +02:00
|
|
|
|
2020-11-02 20:14:57 +01:00
|
|
|
meta = with lib; {
|
2020-08-09 11:48:23 +02:00
|
|
|
description = "Virtual MIDI Piano Keyboard";
|
|
|
|
homepage = "http://vmpk.sourceforge.net/";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ orivej ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2014-03-15 06:13:25 +01:00
|
|
|
}
|