Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
55 lines
1.4 KiB
Nix
55 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
git,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "codecrafters-cli";
|
|
version = "39";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "codecrafters-io";
|
|
repo = "cli";
|
|
tag = "v${version}";
|
|
hash = "sha256-yvKPDuORHySSYnsjAW3SrZ9GcrFaGfJYoG7+9IfQEVc=";
|
|
# A shortened git commit hash is part of the version output, and is
|
|
# needed at build time. Use the `.git` directory to retrieve the
|
|
# commit SHA, and remove the directory afterwards since it is not needed
|
|
# after that.
|
|
leaveDotGit = true;
|
|
postFetch = ''
|
|
git -C $"$out" rev-parse --short=7 HEAD > $out/COMMIT
|
|
rm -rf $out/.git
|
|
'';
|
|
};
|
|
|
|
vendorHash = "sha256-5t/bRx3mT66e/efjWbb527ZdKOn3qV3hroqiLwP180g=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/codecrafters-io/cli/internal/utils.Version=${version}"
|
|
];
|
|
|
|
# ldflags based on metadata from git
|
|
preBuild = ''
|
|
ldflags+=" -X github.com/codecrafters-io/cli/internal/utils.Commit=$(cat COMMIT)"
|
|
'';
|
|
|
|
# We need to disable tests because the tests for respecting .gitignore
|
|
# include setting up a global gitignore which doesn't work.
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [ git ];
|
|
|
|
meta = with lib; {
|
|
description = "CodeCrafters CLI to run tests";
|
|
mainProgram = "codecrafters";
|
|
homepage = "https://github.com/codecrafters-io/cli";
|
|
maintainers = with maintainers; [ builditluc ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|