8 lines
121 B
Nix
8 lines
121 B
Nix
|
{stdenv, ghc, libraries}:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = ghc.name;
|
||
|
inherit ghc libraries;
|
||
|
builder = ./builder.sh;
|
||
|
}
|