Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

libcef: support i686

Previously, libcef did not actually support i686!! It compiled against a
64 bit chromium, which may have actually worked on CI but it would not
work so well on an actual 32 bit machine.

Jade cee1de09 f3209301

+6 -1
+6 -1
pkgs/development/libraries/libcef/default.nix
··· 61 61 projectArch = "arm64"; 62 62 sha256 = "1j93qawh9h6k2ic70i10npppv5f9dch961lc1wxwsi68daq8r081"; 63 63 }; 64 + "i686-linux" = { 65 + platformStr = "linux32"; 66 + projectArch = "x86"; 67 + sha256 = "0ki4zr8ih06kirgbpxbinv4baw3qvacx208q6qy1cvpfh6ll4fwb"; 68 + }; 64 69 "x86_64-linux" = { 65 70 platformStr = "linux64"; 66 71 projectArch = "x86_64"; ··· 102 107 homepage = "https://cef-builds.spotifycdn.com/index.html"; 103 108 maintainers = with maintainers; [ puffnfresh ]; 104 109 license = licenses.bsd3; 105 - platforms = [ "x86_64-linux" "aarch64-linux" ]; 110 + platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ]; 106 111 }; 107 112 }