1c1967a9a1
svn path=/nixpkgs/trunk/; revision=15143
16 lines
241 B
Nix
16 lines
241 B
Nix
{stdenv, ghc}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ghc-wrapper-${ghc.version}";
|
|
|
|
propagatedBuildInputs = [ghc];
|
|
|
|
unpackPhase = "true";
|
|
installPhase = "true";
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
inherit ghc;
|
|
ghcVersion = ghc.version;
|
|
}
|