about summary refs log tree commit diff
path: root/pkgs/by-name/rt
diff options
context:
space:
mode:
authorThiago Kenji Okada <thiagokokada@gmail.com>2024-06-25 16:17:25 -0300
committerThiago Kenji Okada <thiagokokada@gmail.com>2024-06-25 16:17:25 -0300
commit273ed5610c9effcad8a841d28a6c140f82a00122 (patch)
treeb9b4006f5d6243551347e6185939043611c8225d /pkgs/by-name/rt
parent2293f663f8fc74f6b2f4b1807e69cd3c3e93e2ff (diff)
rtorrent: remove nested usage of with
Diffstat (limited to 'pkgs/by-name/rt')
-rw-r--r--pkgs/by-name/rt/rtorrent/package.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/by-name/rt/rtorrent/package.nix b/pkgs/by-name/rt/rtorrent/package.nix
index f55c989eee6d2..86844faa293d9 100644
--- a/pkgs/by-name/rt/rtorrent/package.nix
+++ b/pkgs/by-name/rt/rtorrent/package.nix
@@ -70,12 +70,12 @@ stdenv.mkDerivation {
     mv doc/rtorrent.rc $out/share/doc/rtorrent/rtorrent.rc
   '';
 
-  meta = with lib; {
+  meta = {
     homepage = "https://rakshasa.github.io/rtorrent/";
     description = "Ncurses client for libtorrent, ideal for use with screen, tmux, or dtach";
-    license = licenses.gpl2Plus;
-    maintainers = with maintainers; [ ebzzry codyopel thiagokokada ];
-    platforms = platforms.unix;
+    license = lib.licenses.gpl2Plus;
+    maintainers = with lib.maintainers; [ ebzzry codyopel thiagokokada ];
+    platforms = lib.platforms.unix;
     mainProgram = "rtorrent";
   };
 }