Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / ag / age-plugin-fido2-hmac / package.nix
blob209bc1a24728f8d826b1c297131b977564e62794
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 , libfido2
5 , stdenv
6 }:
8 buildGoModule rec {
9   pname = "age-plugin-fido2-hmac";
10   version = "0.2.3";
12   src = fetchFromGitHub {
13     owner = "olastor";
14     repo = "age-plugin-fido2-hmac";
15     rev = "v${version}";
16     hash = "sha256-P2gNOZeuODWEb/puFe6EA1wW3pc0xgM567qe4FKbFXg=";
17   };
19   vendorHash = "sha256-h4/tyq9oZt41IfRJmmsLHUpJiPJ7YuFu59ccM7jHsFo=";
21   ldflags = [ "-s" "-w" ];
23   buildInputs = [
24     libfido2
25   ];
27   meta = with lib; {
28     description = "Age plugin to encrypt files with fido2 tokens using the hmac-secret extension and non-discoverable credentials";
29     homepage = "https://github.com/olastor/age-plugin-fido2-hmac/";
30     license = licenses.mit;
31     maintainers = with maintainers; [ matthewcroughan ];
32     mainProgram = "age-plugin-fido2-hmac";
33     broken = stdenv.isDarwin;
34   };