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

27 lines
685 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";
version = "0.7.2";
src = fetchurl {
2020-08-09 09:48:23 +00:00
url = "mirror://sourceforge/${pname}/${version}/${pname}-${version}.tar.bz2";
sha256 = "5oLrjQADg59Mxpb0CNLQAE574IOSYLDLJNaQ/9q2cMQ=";
};
nativeBuildInputs = [ cmake pkg-config qttools docbook-xsl-nons ];
buildInputs = [ qtx11extras drumstick ];
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;
};
}