nixpkgs-suyu/pkgs/applications/networking/mailreaders/mailspring/default.nix

94 lines
1.9 KiB
Nix
Raw Normal View History

2020-04-18 13:14:45 +02:00
{ stdenv
, lib
2020-04-18 13:14:45 +02:00
, fetchurl
, autoPatchelfHook
, alsa-lib
2020-04-18 13:14:45 +02:00
, coreutils
, db
, dpkg
, glib
, gtk3
, libkrb5
, libsecret
, nss
, openssl
, udev
, xorg
}:
stdenv.mkDerivation rec {
pname = "mailspring";
2021-04-17 07:21:10 +02:00
version = "1.9.1";
2020-04-18 13:14:45 +02:00
src = fetchurl {
url = "https://github.com/Foundry376/Mailspring/releases/download/${version}/mailspring-${version}-amd64.deb";
2021-04-17 07:21:10 +02:00
sha256 = "mfpwDYRpFULD9Th8tI5yqb5RYWZJHarbWYpfKS3Q6mE=";
2020-04-18 13:14:45 +02:00
};
nativeBuildInputs = [
autoPatchelfHook
dpkg
];
buildInputs = [
alsa-lib
2020-04-18 13:14:45 +02:00
db
glib
gtk3
2020-04-18 13:14:45 +02:00
libkrb5
libsecret
nss
xorg.libxkbfile
2021-04-28 22:26:45 +02:00
xorg.libXdamage
2020-04-18 13:14:45 +02:00
xorg.libXScrnSaver
xorg.libXtst
];
runtimeDependencies = [
coreutils
openssl
(lib.getLib udev)
2020-04-18 13:14:45 +02:00
];
unpackPhase = ''
runHook preUnpack
2020-04-18 13:14:45 +02:00
dpkg -x $src .
runHook postUnpack
2020-04-18 13:14:45 +02:00
'';
installPhase = ''
runHook preInstall
2020-04-18 13:14:45 +02:00
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
2020-04-18 13:14:45 +02:00
'';
postFixup = /* sh */ ''
substituteInPlace $out/share/applications/Mailspring.desktop \
--replace Exec=mailspring Exec=$out/bin/mailspring
2020-04-18 13:14:45 +02:00
'';
meta = with lib; {
2020-04-18 13:14:45 +02:00
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 ];
2020-04-18 13:14:45 +02:00
homepage = "https://getmailspring.com";
downloadPage = "https://github.com/Foundry376/Mailspring";
platforms = platforms.x86_64;
};
}