d78e1e1db1
this workaround was required when testing on a non-nixos system
64 lines
1.6 KiB
Nix
64 lines
1.6 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchurl
|
|
, autoPatchelfHook
|
|
, pkg-config
|
|
, dpkg
|
|
, openssl
|
|
, webkitgtk
|
|
, libappindicator
|
|
, wrapGAppsHook
|
|
, shared-mime-info
|
|
, glib-networking
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "holochain-launcher";
|
|
version = "0.11.0";
|
|
prerelease = "beta-2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/holochain/launcher/releases/download/v${version}/holochain-launcher-${prerelease}_${version}_amd64.deb";
|
|
sha256 = "sha256-yxovSsPyIzFONa1ACeLkZqDCElDI3uTm81YOYW0/FXE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoPatchelfHook
|
|
dpkg
|
|
wrapGAppsHook # required for FileChooser
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
webkitgtk
|
|
libappindicator
|
|
|
|
glib-networking
|
|
];
|
|
|
|
unpackCmd = "dpkg-deb -x $curSrc source";
|
|
|
|
installPhase = ''
|
|
mv usr $out
|
|
mv $out/bin/holochain-launcher-${prerelease} $out/bin/holochain-launcher
|
|
'';
|
|
|
|
preFixup = ''
|
|
patchelf --add-needed "libappindicator3.so" "$out/bin/holochain-launcher"
|
|
|
|
# without this the DevTools will just display an unparsed HTML file (see https://github.com/tauri-apps/tauri/issues/5711#issuecomment-1336409601)
|
|
gappsWrapperArgs+=(
|
|
--prefix XDG_DATA_DIRS : "${shared-mime-info}/share"
|
|
--set WEBKIT_DISABLE_COMPOSITING_MODE 1
|
|
)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A cross-platform executable that launches a local Holochain conductor, and installs and opens apps";
|
|
homepage = "https://github.com/holochain/launcher";
|
|
maintainers = [ maintainers.steveej ];
|
|
license = licenses.cal10;
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|