2019-06-04 06:07:56 +00:00
|
|
|
{ stdenv, buildGoModule, fetchurl
|
2019-11-25 09:43:54 +00:00
|
|
|
, go, ncurses, notmuch, scdoc
|
2019-06-04 06:07:56 +00:00
|
|
|
, python3, perl, w3m, dante
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "aerc";
|
2019-11-25 09:43:54 +00:00
|
|
|
version = "0.3.0";
|
2019-06-04 06:07:56 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://git.sr.ht/~sircmpwn/aerc/archive/${version}.tar.gz";
|
2019-11-25 09:43:54 +00:00
|
|
|
sha256 = "188jln8hmgiqn5il5m54bns0wk4grj09di8y6mmid58ibw6spma4";
|
2019-06-04 06:07:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
go
|
|
|
|
scdoc
|
|
|
|
python3.pkgs.wrapPython
|
2019-11-25 09:43:54 +00:00
|
|
|
notmuch
|
2019-06-04 06:07:56 +00:00
|
|
|
];
|
|
|
|
|
2019-10-28 14:40:31 +00:00
|
|
|
patches = [
|
|
|
|
./runtime-sharedir.patch
|
|
|
|
];
|
|
|
|
|
2019-06-04 06:07:56 +00:00
|
|
|
pythonPath = [
|
|
|
|
python3.pkgs.colorama
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [ python3 perl ];
|
|
|
|
|
2019-11-25 09:43:54 +00:00
|
|
|
GOFLAGS="-tags=notmuch";
|
|
|
|
|
2019-06-04 06:07:56 +00:00
|
|
|
buildPhase = "
|
|
|
|
runHook preBuild
|
|
|
|
# we use make instead of go build
|
|
|
|
runHook postBuild
|
|
|
|
";
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
make PREFIX=$out install
|
|
|
|
wrapPythonProgramsIn $out/share/aerc/filters "$out $pythonPath"
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
postFixup = ''
|
2019-07-29 21:00:29 +00:00
|
|
|
wrapProgram $out/bin/aerc --prefix PATH ":" \
|
2019-11-25 09:43:54 +00:00
|
|
|
"$out/share/aerc/filters:${stdenv.lib.makeBinPath [ ncurses ]}"
|
2019-06-04 06:07:56 +00:00
|
|
|
wrapProgram $out/share/aerc/filters/html --prefix PATH ":" \
|
|
|
|
${stdenv.lib.makeBinPath [ w3m dante ]}
|
|
|
|
'';
|
|
|
|
|
2019-11-25 09:43:54 +00:00
|
|
|
modSha256 = "0pxbv4zfhii0g41cy0ycfpkkxw6nnd4ibavic6zqw30j476jnm2x";
|
2019-06-04 06:07:56 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "aerc is an email client for your terminal";
|
|
|
|
homepage = https://aerc-mail.org/;
|
|
|
|
maintainers = with maintainers; [ tadeokondrak ];
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|