about summary refs log tree commit diff
path: root/pkgs/applications/misc/wallust
diff options
context:
space:
mode:
authorGustavo Coutinho de Souza <dev@onemoresuza.mailer.me>2023-07-21 09:59:38 -0300
committerGustavo Coutinho de Souza <dev@onemoresuza.mailer.me>2023-07-21 09:59:38 -0300
commit3bc5f78d8bb1f03d0e0f40d776af41713fa56e98 (patch)
treee67ce78abb1cb58b8c46cb4ffec4de9e1f53f419 /pkgs/applications/misc/wallust
parent9ca785644d067445a4aa749902b29ccef61f7476 (diff)
wallust: 2.5.0 -> 2.5.1
Diffstat (limited to 'pkgs/applications/misc/wallust')
-rw-r--r--pkgs/applications/misc/wallust/default.nix17
1 files changed, 10 insertions, 7 deletions
diff --git a/pkgs/applications/misc/wallust/default.nix b/pkgs/applications/misc/wallust/default.nix
index b1ea7a7f0da30..d01b4b96be772 100644
--- a/pkgs/applications/misc/wallust/default.nix
+++ b/pkgs/applications/misc/wallust/default.nix
@@ -1,24 +1,27 @@
-{lib, fetchgit, rustPlatform}:
-
+{ lib
+, fetchgit
+, rustPlatform
+}:
 let
   repoUrl = "https://codeberg.org/explosion-mental/wallust";
-in rustPlatform.buildRustPackage rec {
+in
+rustPlatform.buildRustPackage rec {
   pname = "wallust";
-  version = "2.5.0";
+  version = "2.5.1";
 
   src = fetchgit {
     url = "${repoUrl}.git";
     rev = version;
-    sha256 = "sha256-np03F4XxGFjWfxCKUUIm7Xlp1y9yjzkeb7F2I7dYttA=";
+    hash = "sha256-v72ddWKK2TMHKeBihYjMoJvKXiPe/yqJtdh8VQzjmVU=";
   };
 
-  cargoSha256 = "sha256-yq51LQB53VKjMoNM3f/JzifEHSA69Jso2QYRsaplQfk=";
+  cargoSha256 = "sha256-jDs4KeVN3P+4/T1cW4KDxoY79jE3GXiwzxLrR2HybWw=";
 
   meta = with lib; {
     description = "A better pywal";
     homepage = repoUrl;
     license = licenses.mit;
-    maintainers = with maintainers; [onemoresuza];
+    maintainers = with maintainers; [ onemoresuza ];
     downloadPage = "${repoUrl}/releases/tag/${version}";
     platforms = platforms.unix;
     mainProgram = "wallust";