From e8f9f6efb6d0c1692918ff3e260744201d2c84ca Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Mon, 15 Nov 2021 21:03:33 +0100 Subject: [PATCH] haskell.compiler.ghcjs: fix evaluation regression The treewide change 8547db919a05c86fe724b972b3130f305d6f4267 was done incorrectly for ghcjs. This hasn't been noticed so far due to a lack of CI. --- pkgs/development/compilers/ghcjs/8.10/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/ghcjs/8.10/default.nix b/pkgs/development/compilers/ghcjs/8.10/default.nix index 6b8a251197d8..b6c2f7e72ee0 100644 --- a/pkgs/development/compilers/ghcjs/8.10/default.nix +++ b/pkgs/development/compilers/ghcjs/8.10/default.nix @@ -3,7 +3,7 @@ , callPackage , fetchgit , ghcjsSrcJson ? null -, ghcjsSrc ? fetchgit lib.importJSON ghcjsSrcJson +, ghcjsSrc ? fetchgit (lib.importJSON ghcjsSrcJson) , bootPkgs , stage0 , haskellLib