nix files changed to fetch updated base images for installers
Signed-off-by: Volodymyr Kozieiev <vkjr.sp@gmail.com>
This commit is contained in:
parent
3527a5d2ce
commit
3939b46930
|
@ -5,13 +5,13 @@ with pkgs;
|
|||
let
|
||||
package = stdenv.mkDerivation rec {
|
||||
name = "StatusImAppImage";
|
||||
version = "20181208";
|
||||
version = "20190515";
|
||||
|
||||
src =
|
||||
if stdenv.hostPlatform.system == "x86_64-linux" then
|
||||
fetchurl {
|
||||
url = "https://desktop-app-files.ams3.digitaloceanspaces.com/${name}_${version}.zip";
|
||||
sha256 = "15c6p5v6325kj2whc298dn1dyigi0yzk2nzh1y10d03aqr4j8mp5";
|
||||
sha256 = "0g7qa97cr0f9807sfd3khxiqz575i9kxi6lfda350ilaw8lnnfv2";
|
||||
}
|
||||
else throw "${name} is not supported on ${stdenv.hostPlatform.system}";
|
||||
|
||||
|
@ -36,4 +36,4 @@ in package // {
|
|||
shellHook = ''
|
||||
export STATUSREACT_LINUX_BASEIMAGE_PATH="${package}/src"
|
||||
'';
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,13 +5,13 @@ with pkgs;
|
|||
let
|
||||
package = stdenv.mkDerivation rec {
|
||||
name = "StatusImAppBundle";
|
||||
version = "20181113";
|
||||
version = "20190515";
|
||||
|
||||
src =
|
||||
if stdenv.hostPlatform.system == "x86_64-darwin" then
|
||||
fetchurl {
|
||||
url = "https://desktop-app-files.ams3.digitaloceanspaces.com/Status_${version}.app.zip";
|
||||
sha256 = "0n8n6p60dwsr4q5v4vq8fffcy5qmqhp03yy95k66q4yic72r0hhz";
|
||||
sha256 = "1255jgdp0apqh7qfp752nww91iq39x5mm7rf0wazq2vjahfr4pc5";
|
||||
}
|
||||
else throw "${name} is not supported on ${stdenv.hostPlatform.system}";
|
||||
|
||||
|
@ -36,4 +36,4 @@ in package // {
|
|||
shellHook = ''
|
||||
export STATUSREACT_MACOS_BASEIMAGE_PATH="${package}/src"
|
||||
'';
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7,13 +7,13 @@ assert stdenv.isLinux;
|
|||
let
|
||||
package = stdenv.mkDerivation rec {
|
||||
name = "StatusIm-Windows-base-image";
|
||||
version = "20181113";
|
||||
version = "20190515";
|
||||
|
||||
src =
|
||||
if stdenv.hostPlatform.system == "x86_64-linux" then
|
||||
fetchurl {
|
||||
url = "https://desktop-app-files.ams3.digitaloceanspaces.com/${name}_${version}.zip";
|
||||
sha256 = "1wrxcss63zlwspmw76k549z72hcycxzd9iw4cdh98l4hs2ayzsk3";
|
||||
sha256 = "0wkq0khllms2hnbznb1j8l8yfw6z7phzrdg4ndyik20jkl0faj8f";
|
||||
}
|
||||
else throw "${name} is not supported on ${stdenv.hostPlatform.system}";
|
||||
|
||||
|
@ -46,4 +46,4 @@ in package // {
|
|||
shellHook = ''
|
||||
export STATUSREACT_WINDOWS_BASEIMAGE_PATH="${package}/src"
|
||||
'';
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue