nixpkgs/pkgs/development/compilers/ghc/wrapper.nix

16 lines
241 B
Nix
Raw Normal View History

{stdenv, ghc}:
stdenv.mkDerivation {
name = "ghc-wrapper-${ghc.version}";
propagatedBuildInputs = [ghc];
unpackPhase = "true";
installPhase = "true";
setupHook = ./setup-hook.sh;
inherit ghc;
ghcVersion = ghc.version;
}