airwindows-lv2: 5.0 -> 11.0
This commit is contained in:
parent
87de89e23b
commit
5743cf57de
1 changed files with 4 additions and 6 deletions
|
@ -1,20 +1,18 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, lv2 }:
|
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, lv2 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "airwindows-lv2";
|
pname = "airwindows-lv2";
|
||||||
version = "5.0";
|
version = "11.0";
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "hannesbraun";
|
owner = "hannesbraun";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-sLkcEEYez0Z3pkhMCC7raiwe/m9Tk/lFmOuybZvFqSk=";
|
sha256 = "sha256-IMVcspdWotNbdIZ2IpsNhI0k3+ZdXHEHVxrgOMoROEQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkg-config ];
|
nativeBuildInputs = [ meson ninja pkg-config ];
|
||||||
buildInputs = [ lv2 ];
|
buildInputs = [ lv2 ];
|
||||||
|
|
||||||
cmakeFlags = [ "-DCMAKE_INSTALL_PREFIX=${placeholder "out"}/lib/lv2" ];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Airwindows plugins (ported to LV2)";
|
description = "Airwindows plugins (ported to LV2)";
|
||||||
homepage = "https://github.com/hannesbraun/airwindows-lv2";
|
homepage = "https://github.com/hannesbraun/airwindows-lv2";
|
||||||
|
|
Loading…
Reference in a new issue