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