about summary refs log tree commit diff
path: root/pkgs/tools/misc/octofetch
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-06-02 21:50:03 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-06-02 22:01:39 -0300
commited6560b2d111b771a2014a79aa1c941cb6254f3a (patch)
tree09a2ebcb92f40d2c8e488cfb26f3c32242db7ec0 /pkgs/tools/misc/octofetch
parented1657fb58b7e5534365aa5b8f96e8480ba60a85 (diff)
octofetch: use new SRI hash format
Diffstat (limited to 'pkgs/tools/misc/octofetch')
-rw-r--r--pkgs/tools/misc/octofetch/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/tools/misc/octofetch/default.nix b/pkgs/tools/misc/octofetch/default.nix
index e0cf9d98d651d..3d2d2919aa56d 100644
--- a/pkgs/tools/misc/octofetch/default.nix
+++ b/pkgs/tools/misc/octofetch/default.nix
@@ -1,9 +1,9 @@
 { lib
 , stdenv
 , fetchFromGitHub
-, rustPlatform
-, pkg-config
 , openssl
+, pkg-config
+, rustPlatform
 , Security
 }:
 
@@ -18,15 +18,16 @@ rustPlatform.buildRustPackage rec {
     sha256 = "sha256-/AXE1e02NfxQzJZd0QX6gJDjmFFmuUTOndulZElgIMI=";
   };
 
-  cargoSha256 = "sha256:1ddyzbpsiy54r13nb9yrm64cbbifixnhkskwg5fvhhzj4ri4ks4a";
+  cargoSha256 = "sha256-iuhJYibyQ7hdeXzqCW2PLq7FiKnZp2VHyKT4qO/6vrU=";
 
   nativeBuildInputs = [ pkg-config ];
+
   buildInputs = lib.optionals stdenv.isLinux [ openssl ]
     ++ lib.optionals stdenv.isDarwin [ Security ];
 
   meta = with lib; {
-    description = "Github user information on terminal";
     homepage = "https://github.com/azur1s/octofetch";
+    description = "Github user information on terminal";
     license = licenses.mit;
     maintainers = with maintainers; [ jyooru ];
   };