Merge pull request #299626 from stv0g/add-tpm2-openssl

This commit is contained in:
Sandro 2024-04-08 10:25:40 +02:00 committed by GitHub
commit fd6225747f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,46 @@
{
stdenv,
lib,
autoreconfHook,
fetchFromGitHub,
autoconf-archive,
pkg-config,
openssl,
tpm2-tss,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "tpm2-openssl";
version = "1.2.0";
src = fetchFromGitHub {
owner = "tpm2-software";
repo = "tpm2-openssl";
rev = finalAttrs.version;
hash = "sha256-mZ4Z/GxJFwwfyFd1SAiVlQqOjkFSzsZePeuEZtq8Mcg=";
};
nativeBuildInputs = [
autoreconfHook
autoconf-archive
pkg-config
];
buildInputs = [
openssl
tpm2-tss
];
configureFlags = [ "--with-modulesdir=$$out/lib/ossl-modules" ];
postPatch = ''
echo ${finalAttrs.version} > VERSION
'';
meta = with lib; {
description = "OpenSSL Provider for TPM2 integration";
homepage = "https://github.com/tpm2-software/tpm2-openssl";
license = licenses.bsd3;
maintainers = with maintainers; [ stv0g ];
platforms = platforms.linux;
};
})