mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +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")
|
||||
'';
|
||||
|
||||
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;
|
||||
};
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue