about summary refs log tree commit diff
path: root/pkgs/applications/editors/vscode
diff options
context:
space:
mode:
authorEdmund Wu <fangkazuto@gmail.com>2019-07-04 12:39:48 -0400
committerEdmund Wu <fangkazuto@gmail.com>2019-07-04 12:39:48 -0400
commit6a01e7007c65f615fd2a4f41e49fc8a495974807 (patch)
treed2c1113d3f8868a1e1ca071a80f918aa8e5fa2b5 /pkgs/applications/editors/vscode
parentc69aeba26773417e0b2ad21675405a9cdb77d4a3 (diff)
downloadnixlib-6a01e7007c65f615fd2a4f41e49fc8a495974807.tar
nixlib-6a01e7007c65f615fd2a4f41e49fc8a495974807.tar.gz
nixlib-6a01e7007c65f615fd2a4f41e49fc8a495974807.tar.bz2
nixlib-6a01e7007c65f615fd2a4f41e49fc8a495974807.tar.lz
nixlib-6a01e7007c65f615fd2a4f41e49fc8a495974807.tar.xz
nixlib-6a01e7007c65f615fd2a4f41e49fc8a495974807.tar.zst
nixlib-6a01e7007c65f615fd2a4f41e49fc8a495974807.zip
vscodium: drop i686-linux
Diffstat (limited to 'pkgs/applications/editors/vscode')
-rw-r--r--pkgs/applications/editors/vscode/vscodium.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/applications/editors/vscode/vscodium.nix b/pkgs/applications/editors/vscode/vscodium.nix
index 0d13318efeb3..2e6fffffb895 100644
--- a/pkgs/applications/editors/vscode/vscodium.nix
+++ b/pkgs/applications/editors/vscode/vscodium.nix
@@ -4,7 +4,6 @@ let
   inherit (stdenv.hostPlatform) system;
 
   plat = {
-    "i686-linux" = "linux-ia32";
     "x86_64-linux" = "linux-x64";
     "x86_64-darwin" = "darwin";
   }.${system};
@@ -12,7 +11,6 @@ let
   archive_fmt = if system == "x86_64-darwin" then "zip" else "tar.gz";
 
   sha256 = {
-    "i686-linux" = "0i572kxc7h63jxl6mw5k3gv08m9padqkky5k1f3w0d638hxhfl23";
     "x86_64-linux" = "0577lqpfrjgwbj27hm59kflb558mkl2nx00ys0hwndayqv0bfnvg";
     "x86_64-darwin" = "047sj0j9k74fvw9fc1ripqk2vy4v17jw488m7r95nf0cyyk08xg0";
   }.${system};
@@ -49,6 +47,6 @@ in
       downloadPage = https://github.com/VSCodium/vscodium/releases;
       license = licenses.mit;
       maintainers = with maintainers; [];
-      platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
+      platforms = [ "x86_64-linux" "x86_64-darwin" ];
     };
   }