forked from mirrors/nixpkgs
nylas-mail-bin: drop package which is no longer supported upstream
This commit is contained in:
parent
4e668aee42
commit
26f128c1af
|
@ -1,36 +0,0 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.services.nylas-mail;
|
||||
in {
|
||||
###### interface
|
||||
options = {
|
||||
services.nylas-mail = {
|
||||
|
||||
enable = mkEnableOption ''
|
||||
nylas-mail - Open-source mail client built on the modern web with Electron, React, and Flux
|
||||
'';
|
||||
|
||||
gnome3-keyring = mkOption {
|
||||
type = types.bool;
|
||||
default = true;
|
||||
description = "Enable gnome3 keyring for nylas-mail.";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
###### implementation
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
|
||||
environment.systemPackages = [ pkgs.nylas-mail-bin ];
|
||||
|
||||
services.gnome3.gnome-keyring = mkIf cfg.gnome3-keyring {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
};
|
||||
}
|
|
@ -1,133 +0,0 @@
|
|||
{ dpkg, fetchurl, lib, pkgs, stdenv
|
||||
, alsaLib
|
||||
, atk
|
||||
, cairo
|
||||
, coreutils
|
||||
, cups
|
||||
, dbus
|
||||
, desktop-file-utils
|
||||
, expat
|
||||
, fontconfig
|
||||
, freetype
|
||||
, gcc-unwrapped
|
||||
, gdk-pixbuf
|
||||
, glib
|
||||
, gnome2
|
||||
, libgnome-keyring
|
||||
, libnotify
|
||||
, makeWrapper
|
||||
, nodejs
|
||||
, nspr
|
||||
, nss
|
||||
, pango
|
||||
, python2
|
||||
, udev
|
||||
, wget
|
||||
, xorg
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pkgname}-${version}";
|
||||
pkgname = "nylas-mail-bin";
|
||||
version = "2.0.32";
|
||||
subVersion = "fec7941";
|
||||
|
||||
src =
|
||||
if stdenv.hostPlatform.system == "x86_64-linux" then
|
||||
fetchurl {
|
||||
url = "https://edgehill.s3.amazonaws.com/${version}-${subVersion}/linux-deb/x64/NylasMail.deb";
|
||||
sha256 = "40060aa1dc3b5187b8ed4a07b9de3427e3c5a291df98c2c82395647fa2aa4ada";
|
||||
}
|
||||
else
|
||||
throw "NylasMail is not supported on ${stdenv.hostPlatform.system}";
|
||||
|
||||
propagatedBuildInputs = [
|
||||
alsaLib
|
||||
atk
|
||||
cairo
|
||||
coreutils
|
||||
cups
|
||||
dbus
|
||||
desktop-file-utils
|
||||
expat
|
||||
fontconfig
|
||||
freetype
|
||||
gcc-unwrapped
|
||||
gdk-pixbuf
|
||||
glib
|
||||
gnome2.GConf
|
||||
gnome2.gtk
|
||||
libgnome-keyring
|
||||
libnotify
|
||||
nodejs
|
||||
nspr
|
||||
nss
|
||||
pango
|
||||
python2
|
||||
udev
|
||||
wget
|
||||
xorg.libX11
|
||||
xorg.libXScrnSaver
|
||||
xorg.libXcomposite
|
||||
xorg.libXcursor
|
||||
xorg.libXdamage
|
||||
xorg.libXext
|
||||
xorg.libXfixes
|
||||
xorg.libXi
|
||||
xorg.libXrandr
|
||||
xorg.libXrender
|
||||
xorg.libXtst
|
||||
xorg.libxkbfile
|
||||
];
|
||||
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
buildCommand = ''
|
||||
mkdir -p $out
|
||||
|
||||
${dpkg}/bin/dpkg-deb -x $src unpacked
|
||||
mv unpacked/usr/* $out/
|
||||
|
||||
# Fix path in desktop file
|
||||
substituteInPlace $out/share/applications/nylas-mail.desktop \
|
||||
--replace /usr/bin/nylas-mail $out/bin/nylas-mail
|
||||
|
||||
# Patch librariess
|
||||
noderp=$(patchelf --print-rpath $out/share/nylas-mail/libnode.so)
|
||||
patchelf --set-rpath $noderp:$out/lib:${stdenv.cc.cc.lib}/lib:${xorg.libxkbfile.out}/lib:${lib.makeLibraryPath propagatedBuildInputs } \
|
||||
$out/share/nylas-mail/libnode.so
|
||||
|
||||
ffrp=$(patchelf --print-rpath $out/share/nylas-mail/libffmpeg.so)
|
||||
patchelf --set-rpath $ffrp:$out/lib:${stdenv.cc.cc.lib}/lib:${lib.makeLibraryPath propagatedBuildInputs } \
|
||||
$out/share/nylas-mail/libffmpeg.so
|
||||
|
||||
# Patch binaries
|
||||
binrp=$(patchelf --print-rpath $out/share/nylas-mail/nylas)
|
||||
patchelf --interpreter $(cat "$NIX_CC"/nix-support/dynamic-linker) \
|
||||
--set-rpath $binrp:$out/lib:${stdenv.cc.cc.lib}/lib:${lib.makeLibraryPath propagatedBuildInputs } \
|
||||
$out/share/nylas-mail/nylas
|
||||
|
||||
wrapProgram $out/share/nylas-mail/nylas --set LD_LIBRARY_PATH "${xorg.libxkbfile}/lib:${pkgs.gnome3.libgnome-keyring}/lib";
|
||||
|
||||
# Fix path to bash so apm can install plugins.
|
||||
substituteInPlace $out/share/nylas-mail/resources/apm/bin/apm \
|
||||
--replace /bin/bash ${stdenv.shell}
|
||||
|
||||
wrapProgram $out/share/nylas-mail/resources/apm/bin/apm \
|
||||
--set PATH "${coreutils}/bin"
|
||||
patchelf --interpreter $(cat "$NIX_CC"/nix-support/dynamic-linker) \
|
||||
--set-rpath ${gcc-unwrapped.lib}/lib $out/share/nylas-mail/resources/apm/bin/node
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Open-source mail client built on the modern web with Electron, React, and Flux";
|
||||
longDescription = ''
|
||||
Nylas Mail is an open-source mail client built on the modern web with Electron, React, and Flux. It is designed to be extensible, so it's easy to create new experiences and workflows around email. Nylas Mail can be enabled with it's requirements by enabling 'services.nylas-mail.enable=true'. Alternatively, make sure to have services.gnome3.gnome-keyring.enable = true; in your configuration.nix before running nylas-mail. If you happen to miss this step, you should remove ~/.nylas-mail and "~/.config/Nylas Mail" for a blank setup".
|
||||
'';
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ johnramsden ];
|
||||
homepage = https://nylas.com;
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
|
@ -231,6 +231,7 @@ mapAliases ({
|
|||
nmap_graphical = nmap-graphical; # added 2017-01-19
|
||||
nologin = shadow; # added 2018-04-25
|
||||
nxproxy = nx-libs; # added 2019-02-15
|
||||
nylas-mail-bin = throw "deprecated in 2019-09-11: abandoned by upstream";
|
||||
opencascade_oce = opencascade; # added 2018-04-25
|
||||
opencl-icd = ocl-icd; # added 2017-01-20
|
||||
openexr_ctl = ctl; # added 2018-04-25
|
||||
|
|
|
@ -20746,8 +20746,6 @@ in
|
|||
|
||||
thinkingRock = callPackage ../applications/misc/thinking-rock { };
|
||||
|
||||
nylas-mail-bin = callPackage ../applications/networking/mailreaders/nylas-mail-bin { };
|
||||
|
||||
thonny = callPackage ../applications/editors/thonny { };
|
||||
|
||||
thunderbird = callPackage ../applications/networking/mailreaders/thunderbird {
|
||||
|
|
Loading…
Reference in a new issue