Skip to content

Commit

Permalink
Fixed IHP static dir not correctly linked in nix build
Browse files Browse the repository at this point in the history
  • Loading branch information
mpscholten committed Oct 23, 2021
1 parent c1cc354 commit 97200ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion NixSupport/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ in
makeWrapper $out/bin/RunUnoptimizedProdServer $out/bin/RunProdServer --prefix PATH : ${pkgs.lib.makeBinPath (otherDeps pkgs)}
mkdir -p "$out/lib/build"
cp -R "${ihp}/lib" "$out/lib/build/ihp-lib"
cp -R "${ihp}/lib/IHP" "$out/lib/build/ihp-lib"
mv static "$out/lib/static"
'';
dontFixup = true;
Expand Down
4 changes: 2 additions & 2 deletions ihp.nix
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ mkDerivation {

# For faster builds when hacking on IHP:
# Uncommenting will build without optimizations
# configureFlags = [ "--flag FastBuild" ];
configureFlags = [ "--flag FastBuild" ];
# Uncommenting will not generate documentation
# doHaddock = false;
doHaddock = false;
}

0 comments on commit 97200ee

Please sign in to comment.