Replies: 1 comment 3 replies
-
|
have you tried: final: prev: {
haskellPackages = prev.haskellPackages.override {
overrides = hfinal: hprev: {
ghc = hprev.ghc // { withPackages = hprev.ghc.withHoogle; };
# ths might be redundant
ghcWithPackages = hfinal.ghc.withPackages;
witch = prev.haskellPackages.callHackageDirect {
pkg = "witch";
ver = "0.1.1.0";
sha256 = "0000000000000000000000000000000000000000000000000000";
};
};
};
} |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
edit: answer was silent error from missing argument to callHackageDirect.
I have the following:
I would expect it to give me the sha error, but instead when I actually uncomment that code I don't see the package installed. If I leave it commmented as written above I see:
The overlay is in git:
Beta Was this translation helpful? Give feedback.
All reactions