summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/irc
diff options
context:
space:
mode:
authorsuperherointj <5861043+superherointj@users.noreply.github.com>2024-07-08 18:12:51 -0300
committersuperherointj <5861043+superherointj@users.noreply.github.com>2024-07-08 18:12:51 -0300
commitf486e27db303bb3325114c2e86f9f492982832f3 (patch)
tree60ae62ad1423a665dd7b8a4c90d0a84154b25043 /pkgs/applications/networking/irc
parentbef1fc470a69677478c4ee521720a41ee78b85f5 (diff)
hexchat: removed nested with
Diffstat (limited to 'pkgs/applications/networking/irc')
-rw-r--r--pkgs/applications/networking/irc/hexchat/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/irc/hexchat/default.nix b/pkgs/applications/networking/irc/hexchat/default.nix
index 829f5285f6ad..841ee77e0224 100644
--- a/pkgs/applications/networking/irc/hexchat/default.nix
+++ b/pkgs/applications/networking/irc/hexchat/default.nix
@@ -80,11 +80,11 @@ stdenv.mkDerivation rec {
wrapProgram $out/bin/hexchat --prefix PYTHONPATH : "$PYTHONPATH"
'';
- meta = with lib; {
+ meta = {
description = "Popular and easy to use graphical IRC (chat) client";
homepage = "https://hexchat.github.io/";
- license = licenses.gpl2;
- platforms = platforms.linux;
- maintainers = with maintainers; [ romildo ];
+ license = lib.licenses.gpl2;
+ platforms = lib.platforms.linux;
+ maintainers = with lib.maintainers; [ romildo ];
};
}