lol

Merge pull request #22598 from xwvvvvwx/update-vscode

vscode: 1.9.0 -> 1.9.1

authored by

Gabriel Ebner and committed by
GitHub
fb7c7015 18da9bc8

+7 -7
+7 -7
pkgs/applications/editors/vscode/default.nix
··· 2 2 makeWrapper, libXScrnSaver }: 3 3 4 4 let 5 - version = "1.9.0"; 6 - rev = "27240e71ef390bf2d66307e677c2a333cebf75af"; 5 + version = "1.9.1"; 6 + rev = "f9d0c687ff2ea7aabd85fb9a43129117c0ecf519"; 7 7 channel = "stable"; 8 8 9 9 # The revision can be obtained with the following command (see https://github.com/NixOS/nixpkgs/issues/22465): 10 10 # curl -w "%{url_effective}\n" -I -L -s -S https://vscode-update.azurewebsites.net/latest/linux-x64/stable -o /dev/null 11 11 12 - sha256 = if stdenv.system == "i686-linux" then "05f1sk2lq2skp8fxq6q229kf89vi2sq3zz6lywq7nk81pwvp8jap" 13 - else if stdenv.system == "x86_64-linux" then "0wj17lwq8f88xvfa6wfbqm580kp0470ib2yxn15j9mv0iw7nzqry" 14 - else if stdenv.system == "x86_64-darwin" then "1k067h099j6fv820nn6h4i8ax35yvd1h8f4h5216dm66cpikv7nd" 12 + sha256 = if stdenv.system == "i686-linux" then "03lv792rkb1hgn1knd8kpic7q07cd194cr4fw1bimnjblrvyy586" 13 + else if stdenv.system == "x86_64-linux" then "1vrcb4y2y83bhxx9121afwbzm8yddfin4zy3nyxfi805pjmszwjm" 14 + else if stdenv.system == "x86_64-darwin" then "0s92ing4m2qyqdkpmkhl2zj40hcdsr5x764sb6zprwwhfv4npymr" 15 15 else throw "Unsupported system: ${stdenv.system}"; 16 16 17 17 urlBase = "https://az764295.vo.msecnd.net/${channel}/${rev}/"; 18 18 19 19 urlStr = if stdenv.system == "i686-linux" then 20 - urlBase + "code-${channel}-code_${version}-1486024310_i386.tar.gz" 20 + urlBase + "code-${channel}-code_${version}-1486596246_i386.tar.gz" 21 21 else if stdenv.system == "x86_64-linux" then 22 - urlBase + "code-${channel}-code_${version}-1486023356_amd64.tar.gz" 22 + urlBase + "code-${channel}-code_${version}-1486597190_amd64.tar.gz" 23 23 else if stdenv.system == "x86_64-darwin" then 24 24 urlBase + "VSCode-darwin-${channel}.zip" 25 25 else throw "Unsupported system: ${stdenv.system}";