shell.nix: Set EMITTER_ADDRESS=changeme for development, add node

Change-Id: Id97b1188f890f1325fde3b9052242dd0d00496a8
This commit is contained in:
Stan Drozd 2021-07-16 16:07:30 +02:00
parent 1ef05996c6
commit fe48f05366
1 changed files with 2 additions and 0 deletions

View File

@ -25,6 +25,7 @@ pkgs.mkShell {
hidapi hidapi
libudev libudev
niv niv
nodejs
openssl openssl
pkgconfig pkgconfig
protobuf protobuf
@ -50,4 +51,5 @@ pkgs.mkShell {
); );
DOCKER_BUILDKIT = 1; DOCKER_BUILDKIT = 1;
PROTOC = "${pkgs.protobuf}/bin/protoc"; PROTOC = "${pkgs.protobuf}/bin/protoc";
EMITTER_ADDRESS = "changeme";
} }