mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
27 lines
606 B
Nix
27 lines
606 B
Nix
{ stdenv, fetchurl, cmake, pkgconfig
|
|
, qt4, libjack2
|
|
}:
|
|
|
|
let
|
|
version = "0.5.1";
|
|
in stdenv.mkDerivation rec {
|
|
pname = "vmpk";
|
|
inherit version;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Virtual MIDI Piano Keyboard";
|
|
homepage = "http://vmpk.sourceforge.net/";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/vmpk/${version}/${pname}-${version}.tar.bz2";
|
|
sha256 = "11fqnxgs9hr9255d93n7lazxzjwn8jpmn23nywdksh0pb1ffvfrc";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
buildInputs = [ qt4 libjack2 ];
|
|
}
|