about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/X11/xcwd/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/X11/xcwd/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/X11/xcwd/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/tools/X11/xcwd/default.nix b/nixpkgs/pkgs/tools/X11/xcwd/default.nix
index c0e8cf5d35b3..fa4ec15b8160 100644
--- a/nixpkgs/pkgs/tools/X11/xcwd/default.nix
+++ b/nixpkgs/pkgs/tools/X11/xcwd/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, libX11 }:
+{ lib, stdenv, fetchFromGitHub, libX11 }:
 
 stdenv.mkDerivation {
   version = "2019-05-09";
@@ -19,7 +19,7 @@ stdenv.mkDerivation {
     install -D xcwd "$out/bin/xcwd"
   '';
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = ''
       A simple tool which print the current working directory of the currently focused window
     '';