summary refs log tree commit diff
path: root/pkgs/tools/misc/onefetch/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/onefetch/default.nix')
-rw-r--r--pkgs/tools/misc/onefetch/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/onefetch/default.nix b/pkgs/tools/misc/onefetch/default.nix
index 165a49fad03..7a010eb5e68 100644
--- a/pkgs/tools/misc/onefetch/default.nix
+++ b/pkgs/tools/misc/onefetch/default.nix
@@ -1,4 +1,4 @@
-{ fetchFromGitHub, rustPlatform, stdenv, fetchpatch
+{ fetchFromGitHub, rustPlatform, lib, stdenv, fetchpatch
 , CoreFoundation, libiconv, libresolv, Security }:
 
 rustPlatform.buildRustPackage rec {
@@ -17,7 +17,7 @@ rustPlatform.buildRustPackage rec {
   buildInputs = with stdenv;
     lib.optionals isDarwin [ CoreFoundation libiconv libresolv Security ];
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Git repository summary on your terminal";
     homepage = "https://github.com/o2sh/onefetch";
     license = licenses.mit;