22 lines
443 B
Nix
22 lines
443 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 = "main";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
meta = with lib; {
|
|
description = "totp plugin for pass";
|
|
homepage = "https://git.cycore.io/scm/pass-totp.git";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|