mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 12:15:34 +03:00
kaidan: avoid with lib;
This commit is contained in:
parent
1001a577e6
commit
209dc6172e
1 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue