-
-
Notifications
You must be signed in to change notification settings - Fork 14.3k
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
haskellPackages.leveldb-haskell: fix build #166892
Conversation
@@ -23,6 +23,12 @@ self: super: { | |||
# There are numerical tests on random data, that may fail occasionally | |||
lapack = dontCheck super.lapack; | |||
|
|||
# fix tests failure for base≥4.15 | |||
leveldb-haskell = appendPatch (fetchpatch { | |||
url = "https://github.com/kim/leveldb-haskell/pull/41.patch"; |
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.
Using the commit is a bit more robust as it wouldn't change content on a force push:
url = "https://github.com/kim/leveldb-haskell/pull/41.patch"; | |
url = "https://github.com/kim/leveldb-haskell/commit/f5249081f589233890ddb1945ec548ca9fb717cf.patch"; |
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.
Uhm, it's true but also hides the fact the patch comes from a pull request.
I put the link in the comment.
Cherry-picked as 6a36abc. |
Thank you! |
Description of changes
Fix tests failure for base≥4.15.
Things done
sandbox = true
set innix.conf
? (See Nix manual)haskellPackages.leveldb-haskell
nixos/doc/manual/md-to-db.sh
to update generated release notes