Merge pull request #201314 from callahad/gnupg-disable-ccid-on-darwin

Fixes https://github.com/NixOS/nixpkgs/issues/155629
This commit is contained in:
Sandro 2023-01-03 17:41:00 +01:00 committed by GitHub
commit d25b316f40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -57,7 +57,8 @@ stdenv.mkDerivation rec {
"--with-ksba-prefix=${libksba.dev}" "--with-ksba-prefix=${libksba.dev}"
"--with-npth-prefix=${npth}" "--with-npth-prefix=${npth}"
] ++ lib.optional guiSupport "--with-pinentry-pgm=${pinentry}/${pinentryBinaryPath}" ] ++ lib.optional guiSupport "--with-pinentry-pgm=${pinentry}/${pinentryBinaryPath}"
++ lib.optional withTpm2Tss "--with-tss=intel"; ++ lib.optional withTpm2Tss "--with-tss=intel"
++ lib.optional stdenv.isDarwin "--disable-ccid-driver";
postInstall = if enableMinimal postInstall = if enableMinimal
then '' then ''
rm -r $out/{libexec,sbin,share} rm -r $out/{libexec,sbin,share}