35 lines
1.1 KiB
Nix
35 lines
1.1 KiB
Nix
{ stdenv, fetchgit, pythonPackages, gnupg1orig, makeWrapper, openssl }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
name = "mailpile-${version}";
|
|
version = "0.4.1";
|
|
|
|
src = fetchgit {
|
|
url = "git://github.com/pagekite/Mailpile";
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "118b5zwfwmzj38p0mkj3r1s09jxg8x38y0a42b21imzpmli5vpb5";
|
|
};
|
|
|
|
patchPhase = ''
|
|
substituteInPlace setup.py --replace "data_files.append((dir" "data_files.append(('lib/${pythonPackages.python.libPrefix}/site-packages/' + dir"
|
|
'';
|
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
|
makeWrapper pillow jinja2 spambayes pythonPackages.lxml
|
|
pgpdump gnupg1orig
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/mailpile \
|
|
--prefix PATH ":" "${stdenv.lib.makeBinPath [ gnupg1orig openssl ]}"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A modern, fast web-mail client with user-friendly encryption and privacy features";
|
|
homepage = https://www.mailpile.is/;
|
|
license = [ licenses.asl20 licenses.agpl3 ];
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.domenkozar ];
|
|
};
|
|
}
|