Merge pull request #196142 from magnetophon/airwindows-lv2

airwindows-lv2: 5.0 -> 11.0
This commit is contained in:
Mario Rodas 2022-10-15 11:14:10 -05:00 committed by GitHub
commit 5ec1699ec0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,20 +1,18 @@
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, lv2 }:
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, lv2 }:
stdenv.mkDerivation rec {
pname = "airwindows-lv2";
version = "5.0";
version = "11.0";
src = fetchFromGitHub {
owner = "hannesbraun";
repo = pname;
rev = "v${version}";
sha256 = "sha256-sLkcEEYez0Z3pkhMCC7raiwe/m9Tk/lFmOuybZvFqSk=";
sha256 = "sha256-IMVcspdWotNbdIZ2IpsNhI0k3+ZdXHEHVxrgOMoROEQ=";
};
nativeBuildInputs = [ cmake pkg-config ];
nativeBuildInputs = [ meson ninja pkg-config ];
buildInputs = [ lv2 ];
cmakeFlags = [ "-DCMAKE_INSTALL_PREFIX=${placeholder "out"}/lib/lv2" ];
meta = with lib; {
description = "Airwindows plugins (ported to LV2)";
homepage = "https://github.com/hannesbraun/airwindows-lv2";