mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-05 10:22:31 +01:00
5 lines
199 B
Bash
5 lines
199 B
Bash
|
#!/usr/bin/env nix-shell
|
||
|
#!nix-shell -i "bash -x" -p bash
|
||
|
DEPS_HASH=`nix run nixpkgs#prefetch-npm-deps -- package-lock.json`
|
||
|
sed 's/$NPM_HASH/'${DEPS_HASH/\//\\\/}'/g' flake.template.nix > flake.nix
|