Skip to content

Commit

Permalink
vscodium: drop i686-linux
Browse files Browse the repository at this point in the history
  • Loading branch information
eadwu committed Jul 4, 2019
1 parent c69aeba commit 6a01e70
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pkgs/applications/editors/vscode/vscodium.nix
Expand Up @@ -4,15 +4,13 @@ let
inherit (stdenv.hostPlatform) system;

plat = {
"i686-linux" = "linux-ia32";
"x86_64-linux" = "linux-x64";
"x86_64-darwin" = "darwin";
}.${system};

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};
Expand Down Expand Up @@ -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" ];
};
}

0 comments on commit 6a01e70

Please sign in to comment.