Merge pull request #641 from schlarpc/master

overrides.awscrt: Add override to include cmake
This commit is contained in:
adisbladis 2022-05-16 12:19:14 +08:00 committed by GitHub
commit 749fc8ebd4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -163,6 +163,13 @@ lib.composeManyExtensions [
attr = "flit-core";
} else super.argon2-cffi;
awscrt = super.awscrt.overridePythonAttrs (
old: {
nativeBuildInputs = [ pkgs.cmake ] ++ old.nativeBuildInputs;
dontUseCmakeConfigure = true;
}
);
bcrypt = super.bcrypt.overridePythonAttrs (
old: {
buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.libffi ];