diff options
author | Finn Behrens | 2021-01-21 12:03:24 +0100 |
---|---|---|
committer | Finn Behrens | 2021-01-21 12:03:24 +0100 |
commit | b4bfd52e7c27141890a16f913c7a5873fc5a06ef (patch) | |
tree | 28dcbda0d04dac203b7d9c00e1dde46f9a919d21 /back | |
parent | 51d69620e1543f8cf4ae093c4c0b15e228c58d14 (diff) |
create overlay and move everything into workadventure.*
Diffstat (limited to '')
-rw-r--r-- | back/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/back/default.nix b/back/default.nix index 5a5a973..5f92960 100644 --- a/back/default.nix +++ b/back/default.nix @@ -4,7 +4,7 @@ , fetchzip , makeWrapper , nodejs-14_x -, workadventure-messages +, workadventure , yarn2nix-moretea , ... }: @@ -59,7 +59,7 @@ yarn2nix-moretea.mkYarnPackage rec { buildPhase = '' mkdir -p $out - ln -s ${workadventure-messages.outPath}/generated deps/${pname}/src/Messages/generated + ln -s ${workadventure.messages.outPath}/generated deps/${pname}/src/Messages/generated HOME=$TMPDIR yarn --offline run tsc cp -r deps/${pname}/dist $out/dist ''; |