40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ stdenv, fetchurl, unzip }:
|
|
|
|
assert stdenv.isLinux;
|
|
|
|
let
|
|
package = stdenv.mkDerivation rec {
|
|
pname = "StatusIm-Windows-base-image";
|
|
version = "20190515";
|
|
|
|
src =
|
|
if stdenv.hostPlatform.system == "x86_64-linux" then
|
|
fetchurl {
|
|
url = "https://desktop-app-files.ams3.digitaloceanspaces.com/${pname}_${version}.zip";
|
|
sha256 = "0wkq0khllms2hnbznb1j8l8yfw6z7phzrdg4ndyik20jkl0faj8f";
|
|
}
|
|
else throw "${pname} is not supported on ${stdenv.hostPlatform.system}";
|
|
|
|
nativeBuildInputs = [ unzip ];
|
|
|
|
phases = [ "unpackPhase" ];
|
|
unpackPhase = ''
|
|
mkdir -p $out/src
|
|
unzip $src -d $out/src
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A base image for Windows Status Desktop release distributions";
|
|
homepage = https://desktop-app-files.ams3.digitaloceanspaces.com/;
|
|
license = licenses.gpl3;
|
|
maintainers = [ maintainers.pombeirp ];
|
|
platforms = platforms.linux;
|
|
};
|
|
};
|
|
|
|
in package // {
|
|
shellHook = (package.shellHook or "") + ''
|
|
export STATUSREACT_WINDOWS_BASEIMAGE_PATH="${package}/src"
|
|
'';
|
|
}
|