mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +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)
93 lines
1.6 KiB
Nix
93 lines
1.6 KiB
Nix
{ stdenv
|
|
, lib
|
|
, pname
|
|
, version
|
|
, meta
|
|
, fetchurl
|
|
, autoPatchelfHook
|
|
, alsa-lib
|
|
, coreutils
|
|
, db
|
|
, dpkg
|
|
, glib
|
|
, gtk3
|
|
, wrapGAppsHook3
|
|
, libkrb5
|
|
, libsecret
|
|
, nss
|
|
, openssl
|
|
, udev
|
|
, xorg
|
|
, mesa
|
|
, libdrm
|
|
, libappindicator
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
inherit pname version meta;
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/Foundry376/Mailspring/releases/download/${finalAttrs.version}/mailspring-${finalAttrs.version}-amd64.deb";
|
|
hash = "sha256-2F5k8zRRI6x1EQ0k8wvIq1Q3Lnrn2ROp/Mq+H7Vqzlc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoPatchelfHook
|
|
dpkg
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
db
|
|
glib
|
|
gtk3
|
|
libkrb5
|
|
libsecret
|
|
nss
|
|
xorg.libxkbfile
|
|
xorg.libXdamage
|
|
xorg.libXScrnSaver
|
|
xorg.libXtst
|
|
xorg.libxshmfence
|
|
mesa
|
|
libdrm
|
|
];
|
|
|
|
runtimeDependencies = [
|
|
coreutils
|
|
openssl
|
|
(lib.getLib udev)
|
|
libappindicator
|
|
libsecret
|
|
];
|
|
|
|
unpackPhase = ''
|
|
runHook preUnpack
|
|
|
|
dpkg -x $src .
|
|
|
|
runHook postUnpack
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/{bin,lib}
|
|
cp -ar ./usr/share $out
|
|
|
|
substituteInPlace $out/share/mailspring/resources/app.asar.unpacked/mailsync \
|
|
--replace-fail dirname ${coreutils}/bin/dirname
|
|
|
|
ln -s $out/share/mailspring/mailspring $out/bin/mailspring
|
|
ln -s ${lib.getLib openssl}/lib/libcrypto.so $out/lib/libcrypto.so.1.0.0
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
postFixup = /* sh */ ''
|
|
substituteInPlace $out/share/applications/Mailspring.desktop \
|
|
--replace-fail Exec=mailspring Exec=$out/bin/mailspring
|
|
'';
|
|
})
|