insomnia/shell.nix
Jack Kavanagh ac0dd5e4b3
use engines config in order to support nix-shell (#5521)
* add shell.nix

* use engines

* fix engine range

* fix
2023-01-05 13:17:34 +00:00

11 lines
170 B
Nix

with import <nixpkgs> {};
mkShell {
nativeBuildInputs = [
nodejs-16_x
electron_22
];
ELECTRON_OVERRIDE_DIST_PATH = "${electron_22}/bin/";
}