age-plugin-tpm: init at unstable-2023-05-02
This commit is contained in:
parent
a62bcbcd12
commit
c6dfb26702
2 changed files with 43 additions and 0 deletions
41
pkgs/tools/security/age-plugin-tpm/default.nix
Normal file
41
pkgs/tools/security/age-plugin-tpm/default.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, swtpm
|
||||
}:
|
||||
|
||||
buildGoModule {
|
||||
pname = "age-plugin-tpm";
|
||||
version = "unstable-2023-05-02";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Foxboron";
|
||||
repo = "age-plugin-tpm";
|
||||
rev = "c570739b05c067087c44f651efce6890eedc0647";
|
||||
hash = "sha256-xlJtyNAYi/6vBWLsjymFLGfr30w80OplwG2xGTEB118=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-S9wSxw0ZMibCOspgGt5vjzFhPL+bZncjTdIX2mkX5vE=";
|
||||
|
||||
postConfigure = ''
|
||||
substituteInPlace vendor/github.com/foxboron/swtpm_test/swtpm.go \
|
||||
--replace "/usr/share/swtpm/swtpm-create-user-config-files" "${swtpm}/share/swtpm/swtpm-create-user-config-files"
|
||||
'';
|
||||
|
||||
nativeCheckInputs = [
|
||||
swtpm
|
||||
];
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "TPM 2.0 plugin for age";
|
||||
homepage = "https://github.com/Foxboron/age-plugin-tpm";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ kranzes ];
|
||||
};
|
||||
}
|
|
@ -6553,6 +6553,8 @@ with pkgs;
|
|||
|
||||
agebox = callPackage ../tools/security/agebox { };
|
||||
|
||||
age-plugin-tpm = callPackage ../tools/security/age-plugin-tpm { };
|
||||
|
||||
age-plugin-yubikey = darwin.apple_sdk_11_0.callPackage ../tools/security/age-plugin-yubikey {
|
||||
inherit (darwin.apple_sdk_11_0.frameworks) Foundation PCSC IOKit;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue