2021-01-25 09:26:54 +01:00
|
|
|
{ lib, fetchFromGitHub, python2Packages, gnupg1orig, openssl, git }:
|
2014-01-21 14:08:22 +01:00
|
|
|
|
2016-11-18 13:16:36 +01:00
|
|
|
python2Packages.buildPythonApplication rec {
|
2019-08-31 13:41:23 +02:00
|
|
|
pname = "mailpile";
|
2018-02-14 07:24:08 +01:00
|
|
|
version = "1.0.0rc2";
|
2014-01-21 14:08:22 +01:00
|
|
|
|
2018-02-01 01:00:00 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mailpile";
|
|
|
|
repo = "Mailpile";
|
2019-09-09 01:38:31 +02:00
|
|
|
rev = version;
|
2018-02-14 07:24:08 +01:00
|
|
|
sha256 = "1z5psh00fjr8gnl4yjcl4m9ywfj24y1ffa2rfb5q8hq4ksjblbdj";
|
2014-01-21 14:08:22 +01:00
|
|
|
};
|
2014-10-09 12:49:34 +02:00
|
|
|
|
2018-02-01 01:00:00 +01:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs scripts
|
2014-09-14 18:28:13 +02:00
|
|
|
'';
|
2014-01-21 14:08:22 +01:00
|
|
|
|
2018-02-01 01:00:00 +01:00
|
|
|
nativeBuildInputs = with python2Packages; [ pbr git ];
|
|
|
|
PBR_VERSION=version;
|
|
|
|
|
2016-11-18 13:16:36 +01:00
|
|
|
propagatedBuildInputs = with python2Packages; [
|
2018-02-01 01:00:00 +01:00
|
|
|
appdirs
|
|
|
|
cryptography
|
|
|
|
fasteners
|
|
|
|
gnupg1orig
|
|
|
|
jinja2
|
|
|
|
pgpdump
|
|
|
|
pillow
|
|
|
|
python2Packages.lxml
|
|
|
|
spambayes
|
2014-09-14 18:28:13 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
2014-09-26 10:02:20 +02:00
|
|
|
wrapProgram $out/bin/mailpile \
|
2021-01-15 06:42:41 +01:00
|
|
|
--prefix PATH ":" "${lib.makeBinPath [ gnupg1orig openssl ]}" \
|
2018-02-01 01:00:00 +01:00
|
|
|
--set-default MAILPILE_SHARED "$out/share/mailpile"
|
2014-09-14 18:28:13 +02:00
|
|
|
'';
|
2014-01-21 14:08:22 +01:00
|
|
|
|
2016-11-18 13:16:36 +01:00
|
|
|
# No tests were found
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2014-01-21 14:08:22 +01:00
|
|
|
description = "A modern, fast web-mail client with user-friendly encryption and privacy features";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.mailpile.is/";
|
2015-06-19 14:00:43 +02:00
|
|
|
license = [ licenses.asl20 licenses.agpl3 ];
|
2014-01-21 14:08:22 +01:00
|
|
|
platforms = platforms.linux;
|
2021-03-03 11:50:26 +01:00
|
|
|
maintainers = [ ];
|
2017-03-07 00:02:55 +01: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 14:08:22 +01:00
|
|
|
};
|
2014-10-09 12:49:34 +02:00
|
|
|
}
|