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

38 lines
1.1 KiB
Nix
Raw Normal View History

2016-11-18 12:16:36 +00:00
{ stdenv, fetchgit, python2Packages, gnupg1orig, makeWrapper, openssl }:
2016-11-18 12:16:36 +00:00
python2Packages.buildPythonApplication rec {
2014-09-14 17:28:13 +01:00
name = "mailpile-${version}";
2014-10-09 11:49:34 +01:00
version = "0.4.1";
src = fetchgit {
url = "git://github.com/pagekite/Mailpile";
2014-10-09 11:49:34 +01:00
rev = "refs/tags/${version}";
sha256 = "118b5zwfwmzj38p0mkj3r1s09jxg8x38y0a42b21imzpmli5vpb5";
};
2014-10-09 11:49:34 +01:00
2014-09-14 17:28:13 +01:00
patchPhase = ''
2016-11-18 12:16:36 +00:00
substituteInPlace setup.py --replace "data_files.append((dir" "data_files.append(('lib/${python2Packages.python.libPrefix}/site-packages/' + dir"
2014-09-14 17:28:13 +01:00
'';
2016-11-18 12:16:36 +00:00
propagatedBuildInputs = with python2Packages; [
makeWrapper pillow jinja2 spambayes python2Packages.lxml
2016-10-06 19:34:35 +01:00
pgpdump gnupg1orig
2014-09-14 17:28:13 +01:00
];
postInstall = ''
wrapProgram $out/bin/mailpile \
2016-08-22 23:06:51 +01:00
--prefix PATH ":" "${stdenv.lib.makeBinPath [ gnupg1orig openssl ]}"
2014-09-14 17:28:13 +01:00
'';
2016-11-18 12:16:36 +00:00
# No tests were found
doCheck = false;
meta = with stdenv.lib; {
description = "A modern, fast web-mail client with user-friendly encryption and privacy features";
homepage = https://www.mailpile.is/;
2015-06-19 13:00:43 +01:00
license = [ licenses.asl20 licenses.agpl3 ];
platforms = platforms.linux;
maintainers = [ maintainers.domenkozar ];
};
2014-10-09 11:49:34 +01:00
}