eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
64 lines
1.6 KiB
Nix
64 lines
1.6 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchurl
|
|
, autoPatchelfHook
|
|
, pkg-config
|
|
, dpkg
|
|
, openssl
|
|
, webkitgtk
|
|
, libappindicator
|
|
, wrapGAppsHook3
|
|
, shared-mime-info
|
|
, glib-networking
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "holochain-launcher";
|
|
version = "0.11.5";
|
|
prerelease = "beta-2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/holochain/launcher/releases/download/v${version}/holochain-launcher-${prerelease}_${version}_amd64.deb";
|
|
sha256 = "sha256-MRFQJRfvJ+dLmPDfPQX9wErIwEr07EAUqxic8kbKVdo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoPatchelfHook
|
|
dpkg
|
|
wrapGAppsHook3 # 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;
|
|
};
|
|
}
|