about summary refs log tree commit diff
path: root/pkgs/applications/networking/spideroak
diff options
context:
space:
mode:
authorLloyd Hazlett <lloydhazlett@users.noreply.github.com>2018-03-12 13:56:27 +1100
committerLloyd Hazlett <lloydhazlett@users.noreply.github.com>2018-03-12 14:26:41 +1100
commit47c7ad14ef03863cf07bc9e8d0ddc5c16a26ad9a (patch)
treed17f4d51616c998e5db440db5f83d8e11e6098d7 /pkgs/applications/networking/spideroak
parente065aa949ade4592590529cb8904acd7f689a14d (diff)
downloadnixlib-47c7ad14ef03863cf07bc9e8d0ddc5c16a26ad9a.tar
nixlib-47c7ad14ef03863cf07bc9e8d0ddc5c16a26ad9a.tar.gz
nixlib-47c7ad14ef03863cf07bc9e8d0ddc5c16a26ad9a.tar.bz2
nixlib-47c7ad14ef03863cf07bc9e8d0ddc5c16a26ad9a.tar.lz
nixlib-47c7ad14ef03863cf07bc9e8d0ddc5c16a26ad9a.tar.xz
nixlib-47c7ad14ef03863cf07bc9e8d0ddc5c16a26ad9a.tar.zst
nixlib-47c7ad14ef03863cf07bc9e8d0ddc5c16a26ad9a.zip
spideroak: 6.1.9 -> 7.0.1
Diffstat (limited to 'pkgs/applications/networking/spideroak')
-rw-r--r--pkgs/applications/networking/spideroak/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/applications/networking/spideroak/default.nix b/pkgs/applications/networking/spideroak/default.nix
index d6fe0d9114c2..4f91a2b24e95 100644
--- a/pkgs/applications/networking/spideroak/default.nix
+++ b/pkgs/applications/networking/spideroak/default.nix
@@ -4,16 +4,16 @@
 }:
 
 let
-  arch = if stdenv.system == "x86_64-linux" then "x86_64"
-    else if stdenv.system == "i686-linux" then "i386"
+  arch = if stdenv.system == "x86_64-linux" then "x64"
+    else if stdenv.system == "i686-linux" then "x86"
     else throw "Spideroak client for: ${stdenv.system} not supported!";
 
   interpreter = if stdenv.system == "x86_64-linux" then "ld-linux-x86-64.so.2"
     else if stdenv.system == "i686-linux" then "ld-linux.so.2"
     else throw "Spideroak client for: ${stdenv.system} not supported!";
 
-  sha256 = if stdenv.system == "x86_64-linux" then "0k87rn4aj0v79rz9jvwspnwzmh031ih0y74ra88nc8kl8j6b6gjm"
-    else if stdenv.system == "i686-linux" then "1wbxfikj8f7rx26asswqrfp9vpk8w5941s21y1pnaff2gcac8m3z"
+  sha256 = if stdenv.system == "x86_64-linux" then "993e01986e3657d6fa979b8d0f45ac25b8223c18f75555016a9f92e651e91b1f"
+    else if stdenv.system == "i686-linux" then "d12c09c3a01bfa48bdecc8763bbf2c7f10b71cea5bcecc177dad031ba79bc83d"
     else throw "Spideroak client for: ${stdenv.system} not supported!";
 
   ldpath = stdenv.lib.makeLibraryPath [
@@ -21,14 +21,14 @@ let
     libX11 libXext libXrender zlib
   ];
 
-  version = "6.1.9";
+  version = "7.0.1";
 
 in stdenv.mkDerivation {
   name = "spideroak-${version}";
 
   src = fetchurl {
-    name = "spideroak-${version}-${arch}";
-    url = "https://spideroak.com/getbuild?platform=slackware&arch=${arch}&version=${version}";
+    name = "SpiderOakONE-${version}-slack_tar_${arch}.tgz";
+    url = "https://spideroak.com/release/spideroak/slack_tar_${arch}";
     inherit sha256;
   };