All checks were successful
Update Nix Packages with nix-update / nix-update (push) Successful in 4m18s
48 lines
1.0 KiB
Nix
48 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
gitMinimal,
|
|
nix-update-script,
|
|
versionCheckHook,
|
|
writableTmpDirAsHomeHook,
|
|
}:
|
|
buildGoModule (finalAttrs: {
|
|
pname = "td";
|
|
version = "0.33.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "marcus";
|
|
repo = "td";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-gci4B83x/0UMawy+fncArF9zO1aHRE/zXj91e5h6yi8=";
|
|
};
|
|
|
|
vendorHash = "sha256-Rp0lhnBLJx+exX7VLql3RfthTVk3LLftD6n6SsSWzVY=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X"
|
|
"main.Version=v${finalAttrs.version}"
|
|
];
|
|
|
|
nativeCheckInputs = [gitMinimal writableTmpDirAsHomeHook];
|
|
|
|
nativeInstallCheckInputs = [versionCheckHook writableTmpDirAsHomeHook];
|
|
versionCheckProgramArg = "version";
|
|
doInstallCheck = true;
|
|
|
|
doCheck = false;
|
|
|
|
passthru.updateScript = nix-update-script {};
|
|
|
|
meta = with lib; {
|
|
description = "Minimalist CLI for tracking tasks across AI coding sessions";
|
|
homepage = "https://github.com/marcus/td";
|
|
license = licenses.mit;
|
|
mainProgram = "td";
|
|
platforms = platforms.unix;
|
|
};
|
|
})
|