kaidan: avoid with lib;

This commit is contained in:
Sizhe Zhao 2025-06-06 15:15:37 +08:00
parent 1001a577e6
commit 209dc6172e
No known key found for this signature in database
GPG key ID: ED1807251A7DA08F

View file

@ -54,7 +54,7 @@ stdenv.mkDerivation (finalAttrs: {
qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0") qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0")
''; '';
meta = with lib; { meta = {
description = "User-friendly and modern chat app, using XMPP"; description = "User-friendly and modern chat app, using XMPP";
mainProgram = "kaidan"; mainProgram = "kaidan";
longDescription = '' longDescription = ''
@ -67,13 +67,13 @@ stdenv.mkDerivation (finalAttrs: {
messages, and file sharing. messages, and file sharing.
''; '';
homepage = "https://www.kaidan.im"; homepage = "https://www.kaidan.im";
license = with licenses; [ license = with lib.licenses; [
gpl3Plus gpl3Plus
mit mit
asl20 asl20
cc-by-sa-40 cc-by-sa-40
]; ];
maintainers = with maintainers; [ astro ]; maintainers = with lib.maintainers; [ astro ];
platforms = with platforms; linux; platforms = with lib.platforms; linux;
}; };
}) })