Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions production.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,19 @@ in
nodejs-11_x yarn
# phantomjs
# gnumake gcc # required for some weird npm things

# for rust & wasm
openssl
wasm-pack
rustup
];

installPhase= ''
'';

shellHook=''
export WASM_PACK_PATH="${pkgs.wasm-pack}/bin/wasm-pack"

echo --- Welcome to woost! ---
echo "Make sure you have the docker service running and added your user to the group 'docker'."
echo Now run ./start sbt
Expand Down
4 changes: 4 additions & 0 deletions project/Deps.scala
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,10 @@ object Deps {
"workbox-webpack-plugin" -> "4.3.1" ::
"optimize-css-assets-webpack-plugin" -> "5.0.1" ::
"cssnano" -> "4.1.10" ::
// "@wasm-tool/wasm-pack-plugin" -> "1.0.0" ::
"@wasm-tool/wasm-pack-plugin" -> "git://github.com/fdietze/wasm-pack-plugin.git#6fce19f" ::
// "@wasm-tool/wasm-pack-plugin" -> "git://github.com/fdietze/wasm-pack-plugin.git#59c09b2" ::
// "@wasm-tool/wasm-pack-plugin" -> "file:/home/felix/projects/wasm-pack-plugin" ::
Nil
}

Expand Down
Loading