hexxy: 0-unstable-2024-09-29 -> 0.1.1

Upstream has finally decided to tag their releases, so let's use them.
Moves hexxy to tagged releasess from an unstable revision, and updates
to the 0.1.1 tag.
This commit is contained in:
NotAShelf
2025-04-03 16:51:20 +05:30
committed by Masum Reza
parent fdcf8ffbe3
commit acb6b253f1
+7 -12
View File
@@ -4,15 +4,15 @@
fetchFromGitHub,
nix-update-script,
}:
buildGoModule {
buildGoModule (finalAttrs: {
pname = "hexxy";
version = "0-unstable-2025-03-16";
version = "0.1.1";
src = fetchFromGitHub {
owner = "sweetbbak";
repo = "hexxy";
# upstream does not publish releases, i.e., there are no tags
rev = "d90f345ba80078b18baf006b3a5aec92d2c330e1";
hash = "sha256-htTGdcJ3oMgfsJ3FH1aRnI2vxMNpBcLksABA75EQUFo=";
tag = "v${finalAttrs.version}";
hash = "sha256-pboOpPGqlSWSiP6yWONxC3wbrGc8FN0++5vHd4ERbkA=";
};
vendorHash = "sha256-qkBpSVLWZPRgS9bqOVUWHpyj8z/nheQJON3vJOwPUj4=";
@@ -21,12 +21,7 @@ buildGoModule {
"-w"
];
passthru.updateScript = nix-update-script {
extraArgs = [
"--version"
"branch"
];
};
passthru.updateScript = nix-update-script { };
meta = {
description = "A modern and beautiful alternative to xxd and hexdump";
@@ -35,4 +30,4 @@ buildGoModule {
maintainers = [ lib.maintainers.NotAShelf ];
mainProgram = "hexxy";
};
}
})