nix-cache-login/package.nix
Abel Luck 7b49665ee5
All checks were successful
buildbot/nix-eval Build done.
buildbot/nix-build Build done.
buildbot/nix-effects Build done.
lower min go version
2026-02-27 08:36:10 +01:00

22 lines
499 B
Nix

{
lib,
buildGoModule,
fetchgit,
}:
buildGoModule {
pname = "nix-cache-login";
version = "0.1.1";
src = ./.;
# src = fetchgit {
# url = "https://guardianproject.dev/ops/nix-cache-login.git";
# rev = "v0.1.0";
# hash = "";
# };
vendorHash = "sha256-1s77IEGP7/6sgXSNdByRQqisLHSeJuRSsrnxUGfkxos=";
meta = {
description = "CLI tool for authenticating with a Nix binary cache via OIDC";
mainProgram = "nix-cache-login";
license = lib.licenses.gpl3Plus;
};
}