spideroak: 7.1.0 -> 7.5.0 (#58450)

As of version 7.3.0, Spideroak no longer supports 32 bit on Linux.
This commit is contained in:
Nathan T.A. Lewis 2019-03-30 17:27:37 -06:00 committed by xeji
parent fd3fdc31b4
commit ac8224ae9b

View File

@ -4,31 +4,21 @@
}: }:
let let
arch = if stdenv.hostPlatform.system == "x86_64-linux" then "x64" sha256 = "6d6ca2b383bcc81af1217c696eb77864a2b6db7428f4b5bde5b5913ce705eec5";
else if stdenv.hostPlatform.system == "i686-linux" then "x86"
else throw "Spideroak client for: ${stdenv.hostPlatform.system} not supported!";
interpreter = if stdenv.hostPlatform.system == "x86_64-linux" then "ld-linux-x86-64.so.2"
else if stdenv.hostPlatform.system == "i686-linux" then "ld-linux.so.2"
else throw "Spideroak client for: ${stdenv.hostPlatform.system} not supported!";
sha256 = if stdenv.hostPlatform.system == "x86_64-linux" then "a88e5a8fe4a565ac500668bd53cf5784752d7c9253304ddce39ee7b01d078533"
else if stdenv.hostPlatform.system == "i686-linux" then "668f3b83a974a3877d16c8743c233a427ea0a44ab84b7f9aec19a2995db66c16"
else throw "Spideroak client for: ${stdenv.hostPlatform.system} not supported!";
ldpath = stdenv.lib.makeLibraryPath [ ldpath = stdenv.lib.makeLibraryPath [
fontconfig freetype glib libICE libSM fontconfig freetype glib libICE libSM
libX11 libXext libXrender zlib libX11 libXext libXrender zlib
]; ];
version = "7.1.0"; version = "7.5.0";
in stdenv.mkDerivation { in stdenv.mkDerivation {
name = "spideroak-${version}"; name = "spideroak-${version}";
src = fetchurl { src = fetchurl {
name = "SpiderOakONE-${version}-slack_tar_${arch}.tgz"; name = "SpiderOakONE-${version}-slack_tar_x64.tgz";
url = "https://spideroak.com/release/spideroak/slack_tar_${arch}"; url = "https://spideroak.com/release/spideroak/slack_tar_x64";
inherit sha256; inherit sha256;
}; };
@ -46,7 +36,7 @@ in stdenv.mkDerivation {
rm -f $out/opt/SpiderOakONE/lib/libz* rm -f $out/opt/SpiderOakONE/lib/libz*
patchelf --set-interpreter ${stdenv.glibc.out}/lib/${interpreter} \ patchelf --set-interpreter ${stdenv.glibc.out}/lib/ld-linux-x86-64.so.2 \
"$out/opt/SpiderOakONE/lib/SpiderOakONE" "$out/opt/SpiderOakONE/lib/SpiderOakONE"
RPATH=$out/opt/SpiderOakONE/lib:${ldpath} RPATH=$out/opt/SpiderOakONE/lib:${ldpath}