atuin: v14.0.1 -> v15.0.0. (#234826)

This commit is contained in:
Ramses 2023-06-01 16:54:29 +02:00 committed by GitHub
parent bc4dc97301
commit 825ad30f70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,17 +12,20 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "atuin"; pname = "atuin";
version = "14.0.1"; version = "15.0.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ellie"; owner = "ellie";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
hash = "sha256-mfeHgUCnt/DkdKxFlYx/t2LLjiqDX5mBMHto9A4mj78="; hash = "sha256-BX1WpvJMcfpepsRX0U6FJBL5/+mpUyTZxm65BbbZLJA=";
}; };
# TODO: unify this to one hash because updater do not support this # TODO: unify this to one hash because updater do not support this
cargoHash = if stdenv.isLinux then "sha256-oaBTj+ZSJ36AFwIrB6d0cZppoAzV4QDr3+EylYqY7cw=" else "sha256-UNuoW/EOGtuNROm1qZJ4afDfMlecziVsem1m3Z1ZsOU="; cargoHash =
if stdenv.isLinux
then "sha256-EnIR+BXw8oYlv3dpYy4gAkN/zckRI8KEAbbR9wPmMq4="
else "sha256-hHcahzrIuXIgOv+sx0HbC9f5guTcTr6L4eeLoiQsAzA=";
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];