hut: embed version string, modernize (#418532)

This commit is contained in:
Aleksana
2025-07-05 18:48:23 +08:00
committed by GitHub
+12 -7
View File
@@ -5,15 +5,15 @@
scdoc,
}:
buildGoModule rec {
buildGoModule (finalAttrs: {
pname = "hut";
version = "0.7.0";
src = fetchFromSourcehut {
owner = "~xenrox";
repo = "hut";
rev = "v${version}";
sha256 = "sha256-pc6E3ORDmaMhoNe8GQeYZrxhe5ySQqsMPe/iUbclnGk=";
rev = "v${finalAttrs.version}";
hash = "sha256-pc6E3ORDmaMhoNe8GQeYZrxhe5ySQqsMPe/iUbclnGk=";
};
vendorHash = "sha256-/51cv/EvcBCyCOf91vJ5M75p0bkAQqVoRUp+C+i70Os=";
@@ -24,6 +24,11 @@ buildGoModule rec {
makeFlags = [ "PREFIX=$(out)" ];
ldflags = [
# Recommended in 0.7.0 release notes https://git.sr.ht/~xenrox/hut/refs/v0.7.0
"-X main.version=v${finalAttrs.version}"
];
postBuild = ''
make $makeFlags completions doc/hut.1
'';
@@ -32,11 +37,11 @@ buildGoModule rec {
make $makeFlags install
'';
meta = with lib; {
meta = {
homepage = "https://sr.ht/~xenrox/hut/";
description = "CLI tool for Sourcehut / sr.ht";
license = licenses.agpl3Only;
maintainers = with maintainers; [ fgaz ];
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ fgaz ];
mainProgram = "hut";
};
}
})