lamassu-server/shell.nix
2025-03-31 15:43:08 +01:00

18 lines
480 B
Nix

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
python3
openssl
postgresql
];
shellHook = ''
export PATH="$PWD/node_modules/.bin/:$PATH"
'';
}