nixpkgs/pkgs/applications/audio/vmpk/default.nix

32 lines
810 B
Nix
Raw Normal View History

{ mkDerivation, lib, fetchurl, cmake, pkg-config
, qttools, qtx11extras, drumstick
, docbook-xsl-nons
}:
mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "vmpk";
2021-04-26 21:18:44 +00:00
version = "0.8.2";
src = fetchurl {
2020-08-09 09:48:23 +00:00
url = "mirror://sourceforge/${pname}/${version}/${pname}-${version}.tar.bz2";
2021-04-26 21:18:44 +00:00
sha256 = "1kv256j13adk4ib7r464gsl4vjhih820bq37ddhqfyfd07wh53a2";
};
nativeBuildInputs = [ cmake pkg-config qttools docbook-xsl-nons ];
2021-04-26 21:18:44 +00:00
buildInputs = [ drumstick qtx11extras ];
postInstall = ''
# vmpk drumstickLocales looks here:
ln -s ${drumstick}/share/drumstick $out/share/
'';
2020-08-09 09:48:23 +00:00
meta = with lib; {
2020-08-09 09:48:23 +00:00
description = "Virtual MIDI Piano Keyboard";
homepage = "http://vmpk.sourceforge.net/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ orivej ];
platforms = platforms.linux;
};
}