summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2020-01-14 14:27:23 -0600
committerWill Dietz <w@wdtz.org>2020-01-14 14:27:23 -0600
commit1ff48dce3a43f533570aa56c9a6d5e826dc51dc9 (patch)
treea43eca059f5550d21af650e8a5b6d2c61e1353f5 /pkgs/tools/misc
parent8e48bafca18dd0fd031282b7c76024b95e86f737 (diff)
downloadnixpkgs-1ff48dce3a43f533570aa56c9a6d5e826dc51dc9.tar
nixpkgs-1ff48dce3a43f533570aa56c9a6d5e826dc51dc9.tar.gz
nixpkgs-1ff48dce3a43f533570aa56c9a6d5e826dc51dc9.tar.bz2
nixpkgs-1ff48dce3a43f533570aa56c9a6d5e826dc51dc9.tar.lz
nixpkgs-1ff48dce3a43f533570aa56c9a6d5e826dc51dc9.tar.xz
nixpkgs-1ff48dce3a43f533570aa56c9a6d5e826dc51dc9.tar.zst
nixpkgs-1ff48dce3a43f533570aa56c9a6d5e826dc51dc9.zip
pfetch: use stdenvNoCC for smaller build-time closure
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/pfetch/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/pfetch/default.nix b/pkgs/tools/misc/pfetch/default.nix
index d3d798b16fe..a858ad696af 100644
--- a/pkgs/tools/misc/pfetch/default.nix
+++ b/pkgs/tools/misc/pfetch/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchFromGitHub }:
+{ stdenvNoCC, lib, fetchFromGitHub }:
 
-stdenv.mkDerivation rec {
+stdenvNoCC.mkDerivation rec {
   pname = "pfetch";
   version = "0.4.0";
 
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
     install -Dm755 -t $out/bin pfetch
   '';
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "A pretty system information tool written in POSIX sh";
     homepage = https://github.com/dylanaraps/pfetch;
     license = licenses.mit;