-
-
Notifications
You must be signed in to change notification settings - Fork 14.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
openssl_1_1: 1.1.1l -> 1.1.1m #150733
openssl_1_1: 1.1.1l -> 1.1.1m #150733
Conversation
|
On macos 10.15:
ofborg appears to have same issue. |
☝️ and of course, this corresponds to the entry in the release notes "Fixed random API for MacOS prior to 10.12". Suspect we can drop that patch. (perhaps conditionally if version >= |
patches = [ | ||
./1.1/nix-ssl-cert-file.patch | ||
|
||
(if stdenv.hostPlatform.isDarwin | ||
then ./use-etc-ssl-certs-darwin.patch | ||
else ./use-etc-ssl-certs.patch) | ||
] ++ lib.optionals (stdenv.isDarwin) [ | ||
] ++ lib.optionals (stdenv.isDarwin && (builtins.substring 5 5 version) < "m") [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@risicle PTAL.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Early-stage openssl certainly builds now. Still building the full loop though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't take effect without rec
after common
.
applying patch /nix/store/zj80b7imvm8s8dsnnnnyyyxmm7bfk0z4-macos-yosemite-compat.patch
patching file crypto/rand/rand_unix.c
Reversed (or previously applied) patch detected! Assume -R? [n]
Apply anyway? [n]
Skipping patch.
Just out of curiosity, what does the version
here without rec
refer to?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It refer to lib.version
. with lib;
(or with
itself) considered harmful.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Created a PR #155079.
Have managed to build both the full |
Okay, let's stage this bad boy! |
Successfully created backport PR #151497 for |
The process '/usr/bin/git' failed with exit code 1 |
Motivation for this change
https://www.openssl.org/news/openssl-1.1.1-notes.html
Things done
sandbox = true
set innix.conf
? (See Nix manual)nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD"
. Note: all changes have to be committed, also see nixpkgs-review usage./result/bin/
)nixos/doc/manual/md-to-db.sh
to update generated release notes