lazyjj: upgrade to 0.3.1

This commit is contained in:
Daniel Lundin 2024-09-29 20:47:52 +02:00
parent adc9fdbba9
commit ca7a0646b5
Signed by: dln
SSH key fingerprint: SHA256:dQy1Xj3UiqJYpKR5ggQ2bxgz4jCH8IF+k3AB8o0kmdI

View file

@ -1,16 +1,17 @@
{
stdenvNoCC,
fetchzip,
}: let
version = "0.2.1";
}:
let
version = "0.3.1";
in
stdenvNoCC.mkDerivation {
stdenvNoCC.mkDerivation {
name = "lazyjj";
inherit version;
src = fetchzip {
url = "https://github.com/Cretezy/lazyjj/releases/download/v0.2.1/lazyjj-v0.2.1-x86_64-unknown-linux-musl.tar.gz";
hash = "sha256-yMfGWuzsl94elFxRvGaLA61KBopBnBT3j5pxbCrKl0w=";
url = "https://github.com/Cretezy/lazyjj/releases/download/v0.3.1/lazyjj-v0.3.1-x86_64-unknown-linux-musl.tar.gz";
hash = "sha256-6R4W6uyq8sns8WLoJxp06xAYaJ0Zn+pZLtwhVIPobmc=";
};
installPhase = ''
@ -24,6 +25,6 @@ in
homepage = "https://github.com/Cretezy/lazyjj";
description = "TUI for jj";
mainProgram = "lazyjj";
platforms = ["x86_64-linux"];
platforms = [ "x86_64-linux" ];
};
}
}