2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2018-09-26 06:33:51 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2021-01-19 02:57:51 +00:00
|
|
|
version = "1.2.0";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "2fa";
|
2018-09-26 06:33:51 +00:00
|
|
|
|
|
|
|
goPackagePath = "rsc.io/2fa";
|
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://rsc.io/2fa";
|
2018-09-26 06:33:51 +00:00
|
|
|
description = "Two-factor authentication on the command line";
|
|
|
|
maintainers = with maintainers; [ rvolosatovs ];
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|