2019-11-29 10:20:08 +00:00
|
|
|
{ stdenv, mkShell, callPackage,
|
2019-10-01 17:52:20 +00:00
|
|
|
appimagekit, patchelf, qt5, status-go, baseImageFactory }:
|
2019-03-21 16:56:22 +00:00
|
|
|
|
|
|
|
with stdenv;
|
|
|
|
|
2019-05-07 06:43:53 +00:00
|
|
|
assert isLinux;
|
|
|
|
|
2019-03-21 16:56:22 +00:00
|
|
|
let
|
2019-07-19 18:40:03 +00:00
|
|
|
inherit (lib) concatStrings catAttrs;
|
2019-10-01 17:52:20 +00:00
|
|
|
baseImage = baseImageFactory "linux";
|
2019-03-21 16:56:22 +00:00
|
|
|
appimagekit = callPackage ./appimagekit { };
|
|
|
|
linuxdeployqt = callPackage ./linuxdeployqt { inherit appimagekit; };
|
|
|
|
|
2019-11-29 10:20:08 +00:00
|
|
|
in rec {
|
2019-05-08 15:07:06 +00:00
|
|
|
buildInputs = [
|
|
|
|
appimagekit
|
|
|
|
linuxdeployqt
|
|
|
|
patchelf
|
2019-05-13 09:22:29 +00:00
|
|
|
qt5.full
|
|
|
|
] ++ status-go.buildInputs;
|
2019-04-03 22:05:59 +00:00
|
|
|
|
2019-11-29 10:20:08 +00:00
|
|
|
shell = mkShell {
|
|
|
|
inherit buildInputs;
|
|
|
|
shellHook = concatStrings (catAttrs "shellHook" [ baseImage status-go ]) + ''
|
2019-05-13 09:22:29 +00:00
|
|
|
export QT_PATH="${qt5.full}"
|
|
|
|
export QT_BASEBIN_PATH="${qt5.qtbase.bin}"
|
|
|
|
export PATH="${qt5.full}/bin:$PATH"
|
|
|
|
'';
|
2019-11-29 10:20:08 +00:00
|
|
|
};
|
2019-03-21 16:56:22 +00:00
|
|
|
}
|