mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
b168e73225
* node 18.18.2 electron 28 * bump node-libcurl * mergeASARs false * bump playwright * playwright beta * playwright alpha * fix test
12 lines
243 B
Nix
12 lines
243 B
Nix
with import <nixpkgs> { };
|
|
|
|
mkShell {
|
|
nativeBuildInputs = [
|
|
nodejs-18_x
|
|
electron_28
|
|
stdenv.cc.cc.lib
|
|
];
|
|
LD_LIBRARY_PATH = "${stdenv.cc.cc.lib}/lib64:$LD_LIBRARY_PATH";
|
|
ELECTRON_OVERRIDE_DIST_PATH = "${electron_28}/bin/";
|
|
}
|