Skip to content

Commit

Permalink
Fixed default nix build
Browse files Browse the repository at this point in the history
  • Loading branch information
mpscholten committed Jul 15, 2021
1 parent 2eca339 commit 2629320
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion NixSupport/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@ in
pkgs.stdenv.mkDerivation {
name = "app";
buildPhase = ''
make -B build/ihp-lib
mkdir -p build
rm -f build/ihp-lib
mkdir -p IHP
ln -s "${ihp}/lib/IHP" build/ihp-lib
ln -s "${ihp}/lib" IHP/lib # Avoid the Makefile calling 'which RunDevServer'
make -B build/bin/RunUnoptimizedProdServer
'';
installPhase = ''
Expand Down

0 comments on commit 2629320

Please sign in to comment.