mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
ac0dd5e4b3
* add shell.nix * use engines * fix engine range * fix
11 lines
170 B
Nix
11 lines
170 B
Nix
with import <nixpkgs> {};
|
|
|
|
mkShell {
|
|
nativeBuildInputs = [
|
|
nodejs-16_x
|
|
electron_22
|
|
];
|
|
|
|
ELECTRON_OVERRIDE_DIST_PATH = "${electron_22}/bin/";
|
|
}
|