We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9ffefb commit d83e2dfCopy full SHA for d83e2df
overlays/haskell.nix
@@ -646,7 +646,9 @@ final: prev: {
646
inherit (config) compiler-nix-name compilerSelection evalPackages;
647
selectedCompiler = (compilerSelection final.buildPackages).${compiler-nix-name};
648
649
- plan-json = builtins.fromJSON (builtins.readFile (callProjectResults.projectNix + "/plan.json"));
+ plan-json = builtins.fromJSON (
650
+ builtins.unsafeDiscardStringContext (
651
+ builtins.readFile (callProjectResults.projectNix + "/plan.json")));
652
by-id = final.lib.listToAttrs (map (x: { name = x.id; value = x; }) plan-json.install-plan);
653
to-key = p: if p.type == "pre-existing"
654
then p.pkg-name
0 commit comments