nixpkgs/pkgs/by-name/go/go-2fa/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
624 B
Nix
Raw Normal View History

2022-10-13 14:00:36 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
2018-09-26 06:33:51 +00:00
2022-10-13 14:00:36 +00:00
buildGoModule rec {
pname = "2fa";
2022-10-13 14:00:36 +00:00
version = "1.2.0";
2018-09-26 06:33:51 +00:00
src = fetchFromGitHub {
owner = "rsc";
repo = "2fa";
rev = "v${version}";
2021-01-19 02:57:51 +00:00
sha256 = "sha256-cB5iADZwvJQwwK1GockE2uicFlqFMEAY6xyeXF5lnUY=";
2018-09-26 06:33:51 +00:00
};
2022-10-13 14:00:36 +00:00
deleteVendor = true;
vendorHash = "sha256-4h/+ZNxlJPYY0Kyu2vDE1pDXxC/kGE5JdnagWVOGzAE=";
2022-10-13 14:00:36 +00:00
ldflags = [ "-s" "-w" ];
meta = with lib; {
homepage = "https://rsc.io/2fa";
2018-09-26 06:33:51 +00:00
description = "Two-factor authentication on the command line";
mainProgram = "2fa";
2018-09-26 06:33:51 +00:00
license = licenses.bsd3;
2022-10-13 14:00:36 +00:00
maintainers = with maintainers; [ rvolosatovs ];
2018-09-26 06:33:51 +00:00
};
}