summary refs log tree commit diff
path: root/pkgs/tools/misc/atuin
diff options
context:
space:
mode:
author0x4A6F <0x4A6F@users.noreply.github.com>2023-10-28 22:29:23 +0200
committer0x4A6F <0x4A6F@users.noreply.github.com>2023-10-29 08:54:15 +0100
commit17983c800bc08a5093ec0932f244031c117d90bc (patch)
treee158623b98d7236d8b1dac133a03b26b1e41a5a9 /pkgs/tools/misc/atuin
parentfc5f9cae21630873bad9595fd444d66c6ee34dbd (diff)
atuin: 17.0.0 -> 17.0.1
- Release: https://github.com/atuinsh/atuin/releases/tag/v17.0.1
- Changes: https://github.com/atuinsh/atuin/compare/v17.0.0...v17.0.1
Diffstat (limited to 'pkgs/tools/misc/atuin')
-rw-r--r--pkgs/tools/misc/atuin/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/misc/atuin/default.nix b/pkgs/tools/misc/atuin/default.nix
index bd4677a5e48df..61da92e88d84e 100644
--- a/pkgs/tools/misc/atuin/default.nix
+++ b/pkgs/tools/misc/atuin/default.nix
@@ -12,20 +12,20 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "atuin";
-  version = "17.0.0";
+  version = "17.0.1";
 
   src = fetchFromGitHub {
     owner = "atuinsh";
     repo = "atuin";
     rev = "v${version}";
-    hash = "sha256-eGukHoh1S2CtehapSRUM3+cnVvTpslwvDCSXlrnC4+4=";
+    hash = "sha256-HJRlZwvBra2D7TzVKvMWJ0Hf17QgIEcBDQEHhxdVLIM=";
   };
 
   # TODO: unify this to one hash because updater do not support this
   cargoHash =
     if stdenv.isLinux
-    then "sha256-KlfNOZ5xDID+x0GohbLv+SJlPQRK6C5YzbbFnKvm2ng="
-    else "sha256-8OarzrMc7EiHEDDbs2XiggivebQ68yufnmhXsf6MBwM=";
+    then "sha256-AhoXmEjXsi/OgFX3htOA6A/lWegUFlsywdotX3PDwcs="
+    else "sha256-/nCnZ64pM8oWVX9a4JCeCZRyuo7aVc8YaBVEMbiRsqE=";
 
   nativeBuildInputs = [ installShellFiles ];