about summary refs log tree commit diff
path: root/pkgs/development/compilers/ghc/wrapper.nix
blob: 932cf63430181cf452aa291308a43edd06f2a5f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv, ghc}:

stdenv.mkDerivation {
  name = "ghc-wrapper-${ghc.version}";

  propagatedBuildInputs = [ghc];

  unpackPhase = "true";
  installPhase = "true";
  
  setupHook = ./setup-hook.sh;

  inherit ghc;
  ghcVersion = ghc.version;
}