about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/2fa/default.nix
blob: 7261eb605c088bde8c40c717a2d7659b153218e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "2fa";
  version = "1.2.0";

  src = fetchFromGitHub {
    owner = "rsc";
    repo = "2fa";
    rev = "v${version}";
    sha256 = "sha256-cB5iADZwvJQwwK1GockE2uicFlqFMEAY6xyeXF5lnUY=";
  };

  deleteVendor = true;
  vendorHash = "sha256-4h/+ZNxlJPYY0Kyu2vDE1pDXxC/kGE5JdnagWVOGzAE=";

  ldflags = [ "-s" "-w" ];

  meta = with lib; {
    homepage = "https://rsc.io/2fa";
    description = "Two-factor authentication on the command line";
    mainProgram = "2fa";
    license = licenses.bsd3;
    maintainers = with maintainers; [ rvolosatovs ];
  };
}