about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorEdmund Wu <fangkazuto@gmail.com>2019-02-17 08:24:53 -0500
committerEdmund Wu <fangkazuto@gmail.com>2019-02-17 08:24:53 -0500
commit8d5bce40534e7029f26d9e9aa475bac0094f6d3c (patch)
treeb85e97bc8bd307589768ea602badac0531da9912 /pkgs/applications/editors
parenta44784e81181c971a41c588d93a6cf4bbd1a394c (diff)
downloadnixlib-8d5bce40534e7029f26d9e9aa475bac0094f6d3c.tar
nixlib-8d5bce40534e7029f26d9e9aa475bac0094f6d3c.tar.gz
nixlib-8d5bce40534e7029f26d9e9aa475bac0094f6d3c.tar.bz2
nixlib-8d5bce40534e7029f26d9e9aa475bac0094f6d3c.tar.lz
nixlib-8d5bce40534e7029f26d9e9aa475bac0094f6d3c.tar.xz
nixlib-8d5bce40534e7029f26d9e9aa475bac0094f6d3c.tar.zst
nixlib-8d5bce40534e7029f26d9e9aa475bac0094f6d3c.zip
vscode: 1.31.0 -> 1.31.1
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/vscode/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/editors/vscode/default.nix b/pkgs/applications/editors/vscode/default.nix
index 0c0441f20257..78d7d96d3961 100644
--- a/pkgs/applications/editors/vscode/default.nix
+++ b/pkgs/applications/editors/vscode/default.nix
@@ -18,16 +18,16 @@ let
   }.${system};
 
   sha256 = {
-    "i686-linux" = "09mgvff27iljj9z7h0xxmr6152hcxh7qqxl3i7wdc55ra1rsjq1n";
-    "x86_64-linux" = "1gvlvg3cjsscx6khy5gxd4wnb069kska00qdfwcq4kn7x1z04xnz";
-    "x86_64-darwin" = "1mf9nyjnxgmzai7rfd1rkwk0wvil0ripg3mh8icg4mld2jjz8rsy";
+    "i686-linux" = "04kbx1cx40lsy9irxy1arp1rixzk49ldhg34w3llmfbx63a4hchf";
+    "x86_64-linux" = "1plvx0mjcbizl6iffib95p5224r9frf0mn6c5xp14p3qnrp32jhm";
+    "x86_64-darwin" = "14h9gs6jpxydgd1h16ybq3ifw5jc7k83yg22pw3sk6vhy7hx7pxr";
   }.${system};
 
   archive_fmt = if system == "x86_64-darwin" then "zip" else "tar.gz";
 in
   stdenv.mkDerivation rec {
     name = "vscode-${version}";
-    version = "1.31.0";
+    version = "1.31.1";
 
     src = fetchurl {
       name = "VSCode_${version}_${plat}.${archive_fmt}";
@@ -126,7 +126,7 @@ in
         and code refactoring. It is also customizable, so users can change the
         editor's theme, keyboard shortcuts, and preferences
       '';
-      homepage = http://code.visualstudio.com/;
+      homepage = https://code.visualstudio.com/;
       downloadPage = https://code.visualstudio.com/Updates;
       license = licenses.unfree;
       maintainers = with maintainers; [ eadwu ];