2019-06-03 23:07:56 -07:00
|
|
|
{ stdenv, buildGoModule, fetchurl
|
2019-07-29 14:00:29 -07:00
|
|
|
, go, ncurses, scdoc
|
2019-06-03 23:07:56 -07:00
|
|
|
, python3, perl, w3m, dante
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "aerc";
|
2019-07-17 11:10:16 -07:00
|
|
|
version = "0.1.4";
|
2019-06-03 23:07:56 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://git.sr.ht/~sircmpwn/aerc/archive/${version}.tar.gz";
|
2019-07-17 11:10:16 -07:00
|
|
|
sha256 = "0vlqgcjbq6yp7ffrfs3zwa9hrm4vyx9245v9pkqdn328xlff3h55";
|
2019-06-03 23:07:56 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
go
|
|
|
|
scdoc
|
|
|
|
python3.pkgs.wrapPython
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonPath = [
|
|
|
|
python3.pkgs.colorama
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [ python3 perl ];
|
|
|
|
|
|
|
|
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 14:00:29 -07:00
|
|
|
wrapProgram $out/bin/aerc --prefix PATH ":" \
|
|
|
|
"$out/share/aerc/filters:${stdenv.lib.makeBinPath [ ncurses.dev ]}"
|
2019-06-03 23:07:56 -07:00
|
|
|
wrapProgram $out/share/aerc/filters/html --prefix PATH ":" \
|
|
|
|
${stdenv.lib.makeBinPath [ w3m dante ]}
|
|
|
|
'';
|
|
|
|
|
2019-07-17 11:10:16 -07:00
|
|
|
modSha256 = "0v1b76nax5295bjrq19wdzm2ixiszlk7j1v1k9sjz4la07h5bvfj";
|
2019-06-03 23:07:56 -07: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;
|
|
|
|
};
|
|
|
|
}
|