3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/mailreaders/mailspring/default.nix
Doron Behar ebf3d444cb mailspring: 1.8.0 -> 1.9.0
- Remove now unneeded override for gtk3.
- Add pre and post hooks for explicit phases.
- Add doronbehar as maintainer.
- Update license, see:
https://community.getmailspring.com/t/a-free-open-source-future-for-mailspring/484
2021-04-15 20:18:56 +03:00

93 lines
1.9 KiB
Nix

{ stdenv
, lib
, fetchurl
, autoPatchelfHook
, alsaLib
, coreutils
, db
, dpkg
, glib
, gtk3
, libkrb5
, libsecret
, nss
, openssl
, udev
, xorg
}:
stdenv.mkDerivation rec {
pname = "mailspring";
version = "1.9.0";
src = fetchurl {
url = "https://github.com/Foundry376/Mailspring/releases/download/${version}/mailspring-${version}-amd64.deb";
sha256 = "ISwNFR8M377+J7WoG9MlblF8r5yRTgCxEGszZCjqW/k=";
};
nativeBuildInputs = [
autoPatchelfHook
dpkg
];
buildInputs = [
alsaLib
db
glib
gtk3
libkrb5
libsecret
nss
xorg.libxkbfile
xorg.libXScrnSaver
xorg.libXtst
];
runtimeDependencies = [
coreutils
openssl
(lib.getLib udev)
];
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 dirname ${coreutils}/bin/dirname
ln -s $out/share/mailspring/mailspring $out/bin/mailspring
ln -s ${openssl.out}/lib/libcrypto.so $out/lib/libcrypto.so.1.0.0
runHook postInstall
'';
postFixup = /* sh */ ''
substituteInPlace $out/share/applications/Mailspring.desktop \
--replace Exec=mailspring Exec=$out/bin/mailspring
'';
meta = with lib; {
description = "A beautiful, fast and maintained fork of Nylas Mail by one of the original authors";
longDescription = ''
Mailspring is an open-source mail client forked from Nylas Mail and built with Electron.
Mailspring's sync engine runs locally, but its source is not open.
'';
license = licenses.gpl3Plus;
maintainers = with maintainers; [ toschmidt doronbehar ];
homepage = "https://getmailspring.com";
downloadPage = "https://github.com/Foundry376/Mailspring";
platforms = platforms.x86_64;
};
}