2018-02-01 00:00:00 +00:00
|
|
|
{ stdenv, fetchFromGitHub, python2Packages, gnupg1orig, makeWrapper, openssl, git }:
|
2014-01-21 13:08:22 +00:00
|
|
|
|
2016-11-18 12:16:36 +00:00
|
|
|
python2Packages.buildPythonApplication rec {
|
2014-09-14 16:28:13 +00:00
|
|
|
name = "mailpile-${version}";
|
2018-02-14 06:24:08 +00:00
|
|
|
version = "1.0.0rc2";
|
2014-01-21 13:08:22 +00:00
|
|
|
|
2018-02-01 00:00:00 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mailpile";
|
|
|
|
repo = "Mailpile";
|
|
|
|
rev = "${version}";
|
2018-02-14 06:24:08 +00:00
|
|
|
sha256 = "1z5psh00fjr8gnl4yjcl4m9ywfj24y1ffa2rfb5q8hq4ksjblbdj";
|
2014-01-21 13:08:22 +00:00
|
|
|
};
|
2014-10-09 10:49:34 +00:00
|
|
|
|
2018-02-01 00:00:00 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs scripts
|
2014-09-14 16:28:13 +00:00
|
|
|
'';
|
2014-01-21 13:08:22 +00:00
|
|
|
|
2018-02-01 00:00:00 +00:00
|
|
|
nativeBuildInputs = with python2Packages; [ pbr git ];
|
|
|
|
PBR_VERSION=version;
|
|
|
|
|
2016-11-18 12:16:36 +00:00
|
|
|
propagatedBuildInputs = with python2Packages; [
|
2018-02-01 00:00:00 +00:00
|
|
|
appdirs
|
|
|
|
cryptography
|
|
|
|
fasteners
|
|
|
|
gnupg1orig
|
|
|
|
jinja2
|
|
|
|
pgpdump
|
|
|
|
pillow
|
|
|
|
python2Packages.lxml
|
|
|
|
spambayes
|
2014-09-14 16:28:13 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
2014-09-26 08:02:20 +00:00
|
|
|
wrapProgram $out/bin/mailpile \
|
2018-02-01 00:00:00 +00:00
|
|
|
--prefix PATH ":" "${stdenv.lib.makeBinPath [ gnupg1orig openssl ]}" \
|
|
|
|
--set-default MAILPILE_SHARED "$out/share/mailpile"
|
2014-09-14 16:28:13 +00:00
|
|
|
'';
|
2014-01-21 13:08:22 +00:00
|
|
|
|
2016-11-18 12:16:36 +00:00
|
|
|
# No tests were found
|
|
|
|
doCheck = false;
|
|
|
|
|
2014-01-21 13:08:22 +00:00
|
|
|
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 12:00:43 +00:00
|
|
|
license = [ licenses.asl20 licenses.agpl3 ];
|
2014-01-21 13:08:22 +00:00
|
|
|
platforms = platforms.linux;
|
2016-05-17 11:57:28 +00:00
|
|
|
maintainers = [ maintainers.domenkozar ];
|
2017-03-06 23:02:55 +00:00
|
|
|
knownVulnerabilities = [
|
|
|
|
"Numerous and uncounted, upstream has requested we not package it. See more: https://github.com/NixOS/nixpkgs/pull/23058#issuecomment-283515104"
|
|
|
|
];
|
2014-01-21 13:08:22 +00:00
|
|
|
};
|
2014-10-09 10:49:34 +00:00
|
|
|
}
|