mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
46 lines
911 B
Nix
46 lines
911 B
Nix
{
|
|
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;
|
|
};
|
|
})
|