Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ghcjs-*: Expose the version of GHC used

This is more meaningful than the GHCJS version for most tasks.

+2
+1
pkgs/development/compilers/ghcjs-ng/default.nix
··· 42 targetPrefix = ""; 43 inherit bootGhcjs; 44 inherit (bootGhcjs) version; 45 isGhcjs = true; 46 47 enableShared = true;
··· 42 targetPrefix = ""; 43 inherit bootGhcjs; 44 inherit (bootGhcjs) version; 45 + ghcVersion = bootPkgs.ghc.version; 46 isGhcjs = true; 47 48 enableShared = true;
+1
pkgs/development/compilers/ghcjs/base.nix
··· 133 ''; 134 passthru = { 135 inherit bootPkgs; 136 isCross = true; 137 isGhcjs = true; 138 inherit nodejs ghcjsBoot;
··· 133 ''; 134 passthru = { 135 inherit bootPkgs; 136 + ghcVersion = ghc.version; 137 isCross = true; 138 isGhcjs = true; 139 inherit nodejs ghcjsBoot;