mirror of
https://github.com/status-im/status-react.git
synced 2025-01-11 03:26:31 +00:00
18 lines
336 B
Nix
18 lines
336 B
Nix
{ stdenv, pkgs }:
|
|
|
|
with pkgs;
|
|
with stdenv;
|
|
|
|
assert isLinux;
|
|
|
|
let
|
|
baseImage = callPackage ./base-image { };
|
|
appimagekit = callPackage ./appimagekit { };
|
|
linuxdeployqt = callPackage ./linuxdeployqt { inherit appimagekit; };
|
|
|
|
in {
|
|
buildInputs = [ appimagekit linuxdeployqt patchelf baseImage ];
|
|
|
|
inherit (baseImage) shellHook;
|
|
}
|