fix: properly build schema before using it
This commit is contained in:
parent
7d11bfacb0
commit
fca5c73587
11 changed files with 2045 additions and 2224 deletions
20
new-lamassu-admin/shell.nix
Normal file
20
new-lamassu-admin/shell.nix
Normal 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"
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue