0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

airwave.meta: min-scope with lib

This commit is contained in:
nicoo 2025-01-24 17:20:38 +00:00
parent b98418678d
commit c6f20632f5

View file

@ -83,7 +83,7 @@ multiStdenv.mkDerivation {
wrapProgram $out/libexec/airwave-host-64.exe --set WINELOADER ${wine-xembed}/bin/wine64
'';
meta = with lib; {
meta = {
description = "WINE-based VST bridge for Linux VST hosts";
longDescription = ''
Airwave is a wine based VST bridge, that allows for the use of
@ -94,9 +94,9 @@ multiStdenv.mkDerivation {
window.
'';
homepage = "https://github.com/phantom-code/airwave";
license = licenses.mit;
license = lib.licenses.mit;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ michalrus ];
maintainers = with lib.maintainers; [ michalrus ];
hydraPlatforms = [ ];
};
}