depot/third_party/nixpkgs/pkgs/tools/security/age-plugin-tpm/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

41 lines
909 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
, swtpm
}:
buildGoModule rec {
pname = "age-plugin-tpm";
version = "0.1.0";
src = fetchFromGitHub {
owner = "Foxboron";
repo = "age-plugin-tpm";
rev = "v${version}";
hash = "sha256-Gp7n2/+vgQbsm/En6PQ1to/W6lvFam4Wh3LHdCZnafc=";
};
vendorHash = "sha256-oZni/n2J0N3ZxNhf+RlUWyWeOFwL4+6KUIk6DQF8YpA=";
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 ];
};
}