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

24 lines
639 B
Nix
Raw Normal View History

2020-08-09 09:48:23 +00:00
{ stdenv, fetchurl, cmake, pkgconfig, alsaLib, libjack2, qt4 }:
2020-08-09 09:48:23 +00:00
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "vmpk";
2020-08-09 09:48:23 +00:00
version = "0.5.1";
src = fetchurl {
2020-08-09 09:48:23 +00:00
url = "mirror://sourceforge/${pname}/${version}/${pname}-${version}.tar.bz2";
sha256 = "11fqnxgs9hr9255d93n7lazxzjwn8jpmn23nywdksh0pb1ffvfrc";
};
nativeBuildInputs = [ cmake pkgconfig ];
2020-08-09 09:48:23 +00:00
buildInputs = [ alsaLib libjack2 qt4 ];
meta = with stdenv.lib; {
description = "Virtual MIDI Piano Keyboard";
homepage = "http://vmpk.sourceforge.net/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ orivej ];
platforms = platforms.linux;
};
}