electron: 1.7.9 -> 1.7.11

https://github.com/electron/electron/releases/tag/v1.7.10
https://github.com/electron/electron/releases/tag/v1.7.11

authored by Rodney Lorrimar and committed by Domen Kožar 4250f50d 870e7361

+5 -5
+5 -5
pkgs/development/tools/electron/default.nix
··· 1 { stdenv, lib, libXScrnSaver, makeWrapper, fetchurl, unzip, atomEnv }: 2 3 let 4 - version = "1.7.9"; 5 name = "electron-${version}"; 6 7 throwSystem = throw "Unsupported system: ${stdenv.system}"; ··· 20 src = { 21 i686-linux = fetchurl { 22 url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-linux-ia32.zip"; 23 - sha256 = "0m87n7hqimg93z3m8pa1ggs69f3h5mjrsrrl7x80hxmp3w142krc"; 24 }; 25 x86_64-linux = fetchurl { 26 url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-linux-x64.zip"; 27 - sha256 = "17ii0x6326mwjd0x5dj2693r67y0jra88hkqcpddcq08vf1knr2f"; 28 }; 29 armv7l-linux = fetchurl { 30 url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-linux-armv7l.zip"; 31 - sha256 = "17jkma50d6az8dbyrym8z2lsw2n0r6jhdlm8pb5c928bzgshryqm"; 32 }; 33 }.${stdenv.system} or throwSystem; 34 ··· 56 57 src = fetchurl { 58 url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-darwin-x64.zip"; 59 - sha256 = "1s8kslp101xyaffb3rf8p5cw3p6zij2mn19fa68ykx4naykkwaly"; 60 }; 61 62 buildInputs = [ unzip ];
··· 1 { stdenv, lib, libXScrnSaver, makeWrapper, fetchurl, unzip, atomEnv }: 2 3 let 4 + version = "1.7.11"; 5 name = "electron-${version}"; 6 7 throwSystem = throw "Unsupported system: ${stdenv.system}"; ··· 20 src = { 21 i686-linux = fetchurl { 22 url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-linux-ia32.zip"; 23 + sha256 = "0mxrayczs6fc2a53fzfbgs88l71wm7hadq9ir510kicakblmdbyx"; 24 }; 25 x86_64-linux = fetchurl { 26 url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-linux-x64.zip"; 27 + sha256 = "0v22xhzbq9lcbc83laqs45pbx8gzv648qfkj01pxfsmv3lb4myrl"; 28 }; 29 armv7l-linux = fetchurl { 30 url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-linux-armv7l.zip"; 31 + sha256 = "02n2y69zwzacigqp6f4vg47cmjzf8gvbbispmzkg3pnzk4qc9473"; 32 }; 33 }.${stdenv.system} or throwSystem; 34 ··· 56 57 src = fetchurl { 58 url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-darwin-x64.zip"; 59 + sha256 = "19kfb09ap780ayk7miqfr6gmba9rd10f9q9aphj35yk7cl22znbr"; 60 }; 61 62 buildInputs = [ unzip ];