mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
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/";
|
||
|
}
|