pass-totp/default.nix
2025-07-08 15:04:05 -04:00

23 lines
564 B
Nix

{ buildGoModule, fetchFromGitHub, lib }:
let
pname = "pass-totp";
in
buildGoModule {
inherit pname;
version = "2025-07-08";
src = fetchGit {
url = "https://git.cycore.io/scm/pass-totp.git";
ref = "master";
sha256 = "sha256-XgHxRChcyeoUibIFAleROUCPskHDzZSD1Kl7FUMVt7U=";
};
vendorSha256 = "sha256-rixop68iSE+OHjtMyLBbnphnjFBEtItqgheq2MyEfnc=";
meta = with lib; {
description = "totp plugin for pass";
homepage = "https://git.cycore.io/scm/pass-totp.git";
license = licenses.gpl3Only;
platforms = platforms.linux;
};
}