mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
15 lines
206 B
Nix
15 lines
206 B
Nix
|
{stdenv, ghc}:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "${ghc.name}-wrapper";
|
||
|
|
||
|
propagatedBuildInputs = [ghc];
|
||
|
|
||
|
unpackPhase = "true";
|
||
|
installPhase = "true";
|
||
|
|
||
|
setupHook = ./setup-hook.sh;
|
||
|
|
||
|
inherit ghc;
|
||
|
}
|