From 6a01e7007c65f615fd2a4f41e49fc8a495974807 Mon Sep 17 00:00:00 2001 From: Edmund Wu Date: Thu, 4 Jul 2019 12:39:48 -0400 Subject: [PATCH] vscodium: drop i686-linux --- pkgs/applications/editors/vscode/vscodium.nix | 4 +--- 1 file changed, 1 insertion(+), 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" ]; }; }