spideroak: 6.1.9 -> 7.0.1
This commit is contained in:
parent
e065aa949a
commit
47c7ad14ef
|
@ -4,16 +4,16 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
arch = if stdenv.system == "x86_64-linux" then "x86_64"
|
arch = if stdenv.system == "x86_64-linux" then "x64"
|
||||||
else if stdenv.system == "i686-linux" then "i386"
|
else if stdenv.system == "i686-linux" then "x86"
|
||||||
else throw "Spideroak client for: ${stdenv.system} not supported!";
|
else throw "Spideroak client for: ${stdenv.system} not supported!";
|
||||||
|
|
||||||
interpreter = if stdenv.system == "x86_64-linux" then "ld-linux-x86-64.so.2"
|
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 if stdenv.system == "i686-linux" then "ld-linux.so.2"
|
||||||
else throw "Spideroak client for: ${stdenv.system} not supported!";
|
else throw "Spideroak client for: ${stdenv.system} not supported!";
|
||||||
|
|
||||||
sha256 = if stdenv.system == "x86_64-linux" then "0k87rn4aj0v79rz9jvwspnwzmh031ih0y74ra88nc8kl8j6b6gjm"
|
sha256 = if stdenv.system == "x86_64-linux" then "993e01986e3657d6fa979b8d0f45ac25b8223c18f75555016a9f92e651e91b1f"
|
||||||
else if stdenv.system == "i686-linux" then "1wbxfikj8f7rx26asswqrfp9vpk8w5941s21y1pnaff2gcac8m3z"
|
else if stdenv.system == "i686-linux" then "d12c09c3a01bfa48bdecc8763bbf2c7f10b71cea5bcecc177dad031ba79bc83d"
|
||||||
else throw "Spideroak client for: ${stdenv.system} not supported!";
|
else throw "Spideroak client for: ${stdenv.system} not supported!";
|
||||||
|
|
||||||
ldpath = stdenv.lib.makeLibraryPath [
|
ldpath = stdenv.lib.makeLibraryPath [
|
||||||
|
@ -21,14 +21,14 @@ let
|
||||||
libX11 libXext libXrender zlib
|
libX11 libXext libXrender zlib
|
||||||
];
|
];
|
||||||
|
|
||||||
version = "6.1.9";
|
version = "7.0.1";
|
||||||
|
|
||||||
in stdenv.mkDerivation {
|
in stdenv.mkDerivation {
|
||||||
name = "spideroak-${version}";
|
name = "spideroak-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
name = "spideroak-${version}-${arch}";
|
name = "SpiderOakONE-${version}-slack_tar_${arch}.tgz";
|
||||||
url = "https://spideroak.com/getbuild?platform=slackware&arch=${arch}&version=${version}";
|
url = "https://spideroak.com/release/spideroak/slack_tar_${arch}";
|
||||||
inherit sha256;
|
inherit sha256;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue