summary refs log tree commit diff
path: root/pkgs/applications/misc/rtv
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/misc/rtv')
-rw-r--r--pkgs/applications/misc/rtv/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/applications/misc/rtv/default.nix b/pkgs/applications/misc/rtv/default.nix
index d79ef187377..a94308a65ad 100644
--- a/pkgs/applications/misc/rtv/default.nix
+++ b/pkgs/applications/misc/rtv/default.nix
@@ -17,12 +17,10 @@ pythonPackages.buildPythonPackage rec {
     python.modules.curses
   ];
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = https://github.com/michael-lazar/rtv;
     description = "Browse Reddit from your Terminal";
-    license = stdenv.lib.licenses.mit;
-    maintainers = with stdenv.lib.maintainers; [ matthiasbeyer ];
+    license = licenses.mit;
+    maintainers = with maintainers; [ matthiasbeyer jgeerds ];
   };
 }
-
-