Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
32 lines
835 B
Nix
32 lines
835 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;
|
|
};
|
|
}
|