mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
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)
38 lines
844 B
Nix
38 lines
844 B
Nix
{ stdenv
|
|
, electron-unwrapped
|
|
, wrapGAppsHook3
|
|
, makeWrapper
|
|
, gsettings-desktop-schemas
|
|
, glib
|
|
, gtk3
|
|
, gtk4
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "electron";
|
|
inherit (electron-unwrapped) version;
|
|
|
|
nativeBuildInputs = [ wrapGAppsHook3 makeWrapper ];
|
|
buildInputs = [
|
|
# needed for GSETTINGS_SCHEMAS_PATH
|
|
gsettings-desktop-schemas glib gtk3 gtk4
|
|
];
|
|
dontWrapGApps = true;
|
|
|
|
buildCommand = ''
|
|
gappsWrapperArgsHook
|
|
mkdir -p $out/bin
|
|
makeWrapper "${electron-unwrapped}/libexec/electron/electron" "$out/bin/electron" \
|
|
"''${gappsWrapperArgs[@]}" \
|
|
--set CHROME_DEVEL_SANDBOX $out/libexec/electron/chrome-sandbox
|
|
|
|
ln -s ${electron-unwrapped}/libexec $out/libexec
|
|
'';
|
|
|
|
passthru = {
|
|
unwrapped = electron-unwrapped;
|
|
inherit (electron-unwrapped) headers;
|
|
};
|
|
inherit (electron-unwrapped) meta;
|
|
}
|