summary refs log tree commit diff
path: root/pkgs/tools/X11/xob/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/X11/xob/default.nix')
-rw-r--r--pkgs/tools/X11/xob/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/X11/xob/default.nix b/pkgs/tools/X11/xob/default.nix
index cf74fa3d867..754904449ef 100644
--- a/pkgs/tools/X11/xob/default.nix
+++ b/pkgs/tools/X11/xob/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, pkg-config, xorg, libconfig }:
+{ lib, stdenv, fetchFromGitHub, pkg-config, xorg, libconfig }:
 
 stdenv.mkDerivation rec {
   pname = "xob";
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
 
   makeFlags = [ "prefix=$(out)" ];
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "A lightweight overlay bar for the X Window System";
     longDescription = ''
       A lightweight configurable overlay volume/backlight/progress/anything bar
@@ -30,6 +30,6 @@ stdenv.mkDerivation rec {
     inherit (src.meta) homepage;
     license = licenses.gpl3Plus;
     platforms = platforms.unix;
-    maintainers = with maintainers; [ primeos ];
+    maintainers = with maintainers; [ ];
   };
 }