spideroak: 6.0.1 -> 6.1.9

+8 -7
+8 -7
pkgs/applications/networking/spideroak/default.nix
··· 1 - { stdenv, fetchurl, makeWrapper, glib 2 - , fontconfig, patchelf, libXext, libX11 3 - , freetype, libXrender, zlib 1 + { stdenv, fetchurl, makeWrapper, patchelf 2 + , fontconfig, freetype, glib, libICE, libSM 3 + , libX11, libXext, libXrender, zlib 4 4 }: 5 5 6 6 let ··· 12 12 else if stdenv.system == "i686-linux" then "ld-linux.so.2" 13 13 else throw "Spideroak client for: ${stdenv.system} not supported!"; 14 14 15 - sha256 = if stdenv.system == "x86_64-linux" then "88fd785647def79ee36621fa2a8a5bea73c513de03103f068dd10bc25f3cf356" 16 - else if stdenv.system == "i686-linux" then "8c23271291f40aa144bbf38ceb3cc2a05bed00759c87a65bd798cf8bb289d07a" 15 + sha256 = if stdenv.system == "x86_64-linux" then "0k87rn4aj0v79rz9jvwspnwzmh031ih0y74ra88nc8kl8j6b6gjm" 16 + else if stdenv.system == "i686-linux" then "1wbxfikj8f7rx26asswqrfp9vpk8w5941s21y1pnaff2gcac8m3z" 17 17 else throw "Spideroak client for: ${stdenv.system} not supported!"; 18 18 19 19 ldpath = stdenv.lib.makeLibraryPath [ 20 - glib fontconfig libXext libX11 freetype libXrender zlib 20 + fontconfig freetype glib libICE libSM 21 + libX11 libXext libXrender zlib 21 22 ]; 22 23 23 - version = "6.0.1"; 24 + version = "6.1.9"; 24 25 25 26 in stdenv.mkDerivation { 26 27 name = "spideroak-${version}";