mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
63754de659
* nix * export all on update download complete * fix missing websockets inclusions * tidy up export function
12 lines
262 B
Nix
12 lines
262 B
Nix
with import <nixpkgs> {};
|
|
|
|
mkShell {
|
|
nativeBuildInputs = [
|
|
nodejs-16_x
|
|
electron_22
|
|
stdenv.cc.cc.lib
|
|
];
|
|
LD_LIBRARY_PATH = "${stdenv.cc.cc.lib}/lib64:$LD_LIBRARY_PATH";
|
|
ELECTRON_OVERRIDE_DIST_PATH = "${electron_22}/bin/";
|
|
}
|