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

50 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, gettext, gtk3, pythonPackages
2019-05-22 11:03:39 +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 {
pname = "mailnag";
version = "1.3.0";
2015-06-14 16:31:48 +00:00
src = fetchurl {
url = "https://github.com/pulb/mailnag/archive/v${version}.tar.gz";
sha256 = "0cp5pad6jzd5c14pddbi9ap5bi78wjhk1x2p0gbblmvmcasw309s";
2015-06-14 16:31:48 +00:00
};
buildInputs = [
2019-05-22 11:03:39 +00:00
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; [ ];
2015-06-14 16:31:48 +00:00
};
}