wivrn: remove usages of with

This commit is contained in:
Amadej Kastelic
2025-05-17 17:23:46 +02:00
parent 1aa6bf6f60
commit c7366e9184
+5 -5
View File
@@ -196,14 +196,14 @@ stdenv.mkDerivation (finalAttrs: {
passthru.updateScript = nix-update-script { };
meta = with lib; {
meta = {
description = "An OpenXR streaming application to a standalone headset";
homepage = "https://github.com/WiVRn/WiVRn/";
changelog = "https://github.com/WiVRn/WiVRn/releases/";
license = licenses.gpl3Only;
maintainers = with maintainers; [ passivelemon ];
platforms = platforms.linux;
license = lib.licenses.gpl3Only;
maintainers = [ lib.maintainers.passivelemon ];
platforms = lib.platforms.linux;
mainProgram = "wivrn-server";
sourceProvenance = with sourceTypes; [ fromSource ];
sourceProvenance = [ lib.sourceTypes.fromSource ];
};
})