about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2020-04-01 17:57:20 -0700
committerGitHub <noreply@github.com>2020-04-01 17:57:20 -0700
commit82773f457c8fedcf4646041342b61df0af9446e8 (patch)
tree735e63e1541258f0f4f19edb2314dc59b595d5aa /pkgs/tools
parent54e45fcf1880dad8a4a7d9d077ed302943c34140 (diff)
parent5c462a9c297aec041df71bc922a92fbc9f9f41e2 (diff)
downloadnixlib-82773f457c8fedcf4646041342b61df0af9446e8.tar
nixlib-82773f457c8fedcf4646041342b61df0af9446e8.tar.gz
nixlib-82773f457c8fedcf4646041342b61df0af9446e8.tar.bz2
nixlib-82773f457c8fedcf4646041342b61df0af9446e8.tar.lz
nixlib-82773f457c8fedcf4646041342b61df0af9446e8.tar.xz
nixlib-82773f457c8fedcf4646041342b61df0af9446e8.tar.zst
nixlib-82773f457c8fedcf4646041342b61df0af9446e8.zip
Merge pull request #84006 from r-ryantm/auto-update/pfetch
pfetch: 0.5.0 -> 0.6.0
Diffstat (limited to 'pkgs/tools')
-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 49867331780f..bbecf4656e74 100644
--- a/pkgs/tools/misc/pfetch/default.nix
+++ b/pkgs/tools/misc/pfetch/default.nix
@@ -2,13 +2,13 @@
 
 stdenvNoCC.mkDerivation rec {
   pname = "pfetch";
-  version = "0.5.0";
+  version = "0.6.0";
 
   src = fetchFromGitHub {
     owner = "dylanaraps";
     repo = "pfetch";
     rev = version;
-    sha256 = "0yg9nlrjnm2404ysm2qp1klpq1wlmyih302kzfqchn6l2sibsm4j";
+    sha256 = "06z0k1naw3k052p2z7241lx92rp5m07zlr0alx8pdm6mkc3c4v8f";
   };
 
   dontBuild = true;
@@ -19,7 +19,7 @@ stdenvNoCC.mkDerivation rec {
 
   meta = with lib; {
     description = "A pretty system information tool written in POSIX sh";
-    homepage = https://github.com/dylanaraps/pfetch;
+    homepage = "https://github.com/dylanaraps/pfetch";
     license = licenses.mit;
     platforms = platforms.all;
     maintainers = with maintainers; [ equirosa ];