Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mailspring: init at 1.7.8 #85492

Merged
merged 2 commits into from
Jul 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7782,6 +7782,12 @@
githubId = 1486805;
name = "Toon Nolten";
};
toschmidt = {
email = "tobias.schmidt@in.tum.de";
github = "toschmidt";
githubId = 27586264;
name = "Tobias Schmidt";
};
travisbhartwell = {
email = "nafai@travishartwell.net";
github = "travisbhartwell";
Expand Down
84 changes: 84 additions & 0 deletions pkgs/applications/networking/mailreaders/mailspring/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
{ stdenv
, fetchurl
, autoPatchelfHook
, alsaLib
, coreutils
, db
, dpkg
, glib
, gtk3
, libkrb5
, libsecret
, nss
, openssl
, udev
, xorg
}:

stdenv.mkDerivation rec {
pname = "mailspring";
version = "1.7.8";

src = fetchurl {
url = "https://github.com/Foundry376/Mailspring/releases/download/${version}/mailspring-${version}-amd64.deb";
sha256 = "207fbf813b6da018a5b848e5dc1194b5996daab39adbd873b2cecb0565c105ce";
};

nativeBuildInputs = [
autoPatchelfHook
dpkg
];

buildInputs = [
alsaLib
db
glib
gtk3
libkrb5
libsecret
nss
xorg.libxkbfile
xorg.libXScrnSaver
xorg.libXtst
];

runtimeDependencies = [
coreutils
openssl
udev.lib
];

unpackPhase = ''
dpkg -x $src .
toschmidt marked this conversation as resolved.
Show resolved Hide resolved
'';

installPhase = ''
mkdir -p $out/{bin,lib}
cp -ar ./usr/share $out

substituteInPlace $out/share/mailspring/resources/app.asar.unpacked/mailsync \
--replace realpath ${coreutils}/bin/realpath \
--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
toschmidt marked this conversation as resolved.
Show resolved Hide resolved
'';

postFixup = /* sh */ ''
toschmidt marked this conversation as resolved.
Show resolved Hide resolved
substituteInPlace $out/share/applications/mailspring.desktop \
--replace /usr/bin $out/bin
'';

meta = with stdenv.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.unfree;
maintainers = with maintainers; [ toschmidt ];
homepage = "https://getmailspring.com";
downloadPage = "https://github.com/Foundry376/Mailspring";
platforms = platforms.x86_64;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20677,6 +20677,8 @@ in

normalize = callPackage ../applications/audio/normalize { };

mailspring = callPackage ../applications/networking/mailreaders/mailspring {};

mm = callPackage ../applications/networking/instant-messengers/mm { };

mm-common = callPackage ../development/libraries/mm-common { };
Expand Down