diff options
-rw-r--r-- | biz.nix | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -43,11 +43,8 @@ in { nativeBuildInputs = [ ghc ]; strictDeps = true; buildPhase = '' - # mkdir -p $out/{bin,static} ${baseNameOf relpath} - # # compile with ghc - # ${ghc}/bin/ghc -Werror -i. \ --make ${main} \ -main-is ${module} \ @@ -76,18 +73,13 @@ in { nativeBuildInputs = [ ghcjs ]; strictDeps = true; buildPhase = '' - # mkdir -p $out/{bin,static} ${baseNameOf relpath} - # # compile with ghcjs - # ${ghcjs}/bin/ghcjs -Werror -i. \ --make ${main} \ -main-is ${module} \ -o ${exe} - # # optimize js output - # ${pkgs.closurecompiler}/bin/closure-compiler \ ${exe}.jsexe/all.js > $out/static/${exe} ''; |