niks3: init at 1.3.0 (#489962)

This commit is contained in:
Philip Taron
2026-02-13 17:45:37 +00:00
committed by GitHub
+51
View File
@@ -0,0 +1,51 @@
{
lib,
buildGoModule,
fetchFromGitHub,
makeWrapper,
nix,
}:
buildGoModule (finalAttrs: {
pname = "niks3";
version = "1.3.0";
src = fetchFromGitHub {
owner = "Mic92";
repo = "niks3";
tag = "v${finalAttrs.version}";
hash = "sha256-taQgMTbC+k/b+9mJH5vx7BMM3gKSI+MZWL26ZhePThk=";
};
vendorHash = "sha256-MoYTq1rY1GMmBBP/ypx6DqrHLGtccgsHa+2rpoztI4U=";
subPackages = [
"cmd/niks3"
"cmd/niks3-server"
];
nativeBuildInputs = [ makeWrapper ];
ldflags = [
"-s"
"-w"
];
# The niks3 client shells out to `nix path-info` which differs between Nix and Lix; pinning Nix
# here allows the format to be consistent. See https://github.com/Mic92/niks3/issues/181
postInstall = ''
wrapProgram $out/bin/niks3 --prefix PATH : ${lib.makeBinPath [ nix ]}
'';
meta = {
description = "S3-backed Nix binary cache with garbage collection";
homepage = "https://github.com/Mic92/niks3";
changelog = "https://github.com/Mic92/niks3/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
mic92
philiptaron
];
mainProgram = "niks3";
};
})