47 lines
880 B
Nix
47 lines
880 B
Nix
{
|
|
mkDerivation,
|
|
lib,
|
|
fetchurl,
|
|
cmake,
|
|
pkg-config,
|
|
qttools,
|
|
qtx11extras,
|
|
drumstick,
|
|
docbook-xsl-nons,
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "vmpk";
|
|
version = "0.8.8";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/${pname}/${version}/${pname}-${version}.tar.bz2";
|
|
sha256 = "sha256-+NjTcszb1KXGynIcCf4IEDvN4f8pgXtR1TksxGR5ZHQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
qttools
|
|
docbook-xsl-nons
|
|
];
|
|
|
|
buildInputs = [
|
|
drumstick
|
|
qtx11extras
|
|
];
|
|
|
|
postInstall = ''
|
|
# vmpk drumstickLocales looks here:
|
|
ln -s ${drumstick}/share/drumstick $out/share/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Virtual MIDI Piano Keyboard";
|
|
mainProgram = "vmpk";
|
|
homepage = "http://vmpk.sourceforge.net/";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ orivej ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|