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