fix: properly build schema before using it

This commit is contained in:
Rafael Taranto 2025-02-06 11:12:42 +00:00
parent 7d11bfacb0
commit fca5c73587
11 changed files with 2045 additions and 2224 deletions

View file

@ -0,0 +1,20 @@
with import (fetchTarball {
name = "nixpkgs-194846768975b7ad2c4988bdb82572c00222c0d7";
url = https://github.com/NixOS/nixpkgs/archive/194846768975b7ad2c4988bdb82572c00222c0d7.tar.gz;
sha256 = "0snj72i9dm99jlnnmk8id8ffjnfg1k81lr7aw8d01kz3hdiraqil";
}) {};
stdenv.mkDerivation {
name = "node";
buildInputs = [
nodejs_22
openssl
python3
entr
yasm
];
shellHook = ''
export PATH="$PWD/node_modules/.bin/:$PATH"
'';
}