nixpkgs/pkgs/applications/networking/mailreaders/mailnag/default.nix

50 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, gettext, gtk3, pythonPackages
2015-06-14 16:31:48 +00:00
, gdk_pixbuf, libnotify, gst_all_1
, libgnome-keyring3
, wrapGAppsHook, gnome3
2017-10-19 19:00:17 +00:00
# otherwise passwords are stored unencrypted
, withGnomeKeyring ? true
2015-06-14 16:31:48 +00:00
}:
2017-10-17 10:38:18 +00:00
let
inherit (pythonPackages) python;
in pythonPackages.buildPythonApplication rec {
2015-06-14 16:31:48 +00:00
name = "mailnag-${version}";
2017-09-14 12:32:08 +00:00
version = "1.2.1";
2015-06-14 16:31:48 +00:00
src = fetchurl {
url = "https://github.com/pulb/mailnag/archive/v${version}.tar.gz";
2017-09-14 12:32:08 +00:00
sha256 = "ec7ac027d93bc7d88fc270858f5a181453a6ff07f43cab20563d185818801fee";
2015-06-14 16:31:48 +00:00
};
buildInputs = [
gtk3 gdk_pixbuf libnotify gst_all_1.gstreamer
2015-06-14 16:31:48 +00:00
gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-bad
2019-02-13 21:47:50 +00:00
gnome3.adwaita-icon-theme
] ++ stdenv.lib.optional withGnomeKeyring libgnome-keyring3;
2015-06-14 16:31:48 +00:00
nativeBuildInputs = [
gettext
wrapGAppsHook
];
2017-09-14 12:32:08 +00:00
propagatedBuildInputs = with pythonPackages; [
pygobject3 dbus-python pyxdg
];
2017-09-14 12:32:08 +00:00
2017-10-17 10:38:18 +00:00
buildPhase = "";
installPhase = "${python}/bin/python setup.py install --prefix=$out";
2017-09-14 12:32:08 +00:00
doCheck = false;
2015-06-14 16:31:48 +00:00
meta = with stdenv.lib; {
description = "An extensible mail notification daemon";
homepage = https://github.com/pulb/mailnag;
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ jgeerds ];
};
}