Conversation
There was a problem hiding this comment.
These dontChecks were added to avoid depending on doctest, now that it is unbroken we should reenable tests and check if they can now be executed properly.
|
We'll get doctest 0.20.1 on the next regular hackage bump after which I'd be happy to merge this PR into |
Is there a way to do this without forking nixpkgs? |
|
Reversing changes to derivations is hard, but you can replace the entire compiler specific overlay if you want to: haskell.packages.ghc942.override {
compilerConfig = { pkgs, haskellLib }: self: super: {};
}What you probably want to do is reuse the existing overlay and remove stuff you don't want: pkgs.haskell.packages.ghc942.override {
compilerConfig = { pkgs, haskellLib }@args: self: super:
builtins.removeAttrs (
import (pkgs.path + "/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix") args self super
) [ "override-I-don't-like" ];
} |
09c75bd to
358a1ff
Compare
358a1ff to
0b47d33
Compare
|
Done in 26ec809. |
Description of changes
Not sure how to actually get doctest 0.20.1 in, but I'm getting an error trying to use it downstream.
Things done
sandbox = trueset 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.shto update generated release notes