biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / otpauth / default.nix
blob95d9288b6babde8116793695b7b153fc2e6bec6f
1 { lib
2 , fetchFromGitHub
3 , buildGoModule
4 }:
6 buildGoModule rec {
7   pname = "otpauth";
8   version = "0.5.2";
10   src = fetchFromGitHub {
11     owner = "dim13";
12     repo = "otpauth";
13     rev = "v${version}";
14     sha256 = "sha256-1+A1oXY5sKMr9dVa/4vB+ZkfZSDdhag5y5LfM7OJmKo=";
15   };
17   vendorHash = "sha256-ZRCwZGlWzlWh+E3KUH83639Tfck7bwE36wXVnG7EQIE=";
19   meta = with lib; {
20     description = "Google Authenticator migration decoder";
21     mainProgram = "otpauth";
22     homepage = "https://github.com/dim13/otpauth";
23     license = licenses.isc;
24     maintainers = with maintainers; [ ereslibre ];
25   };