65 lines
1.4 KiB
Nix
65 lines
1.4 KiB
Nix
{ lib, buildGoModule, fetchFromSourcehut
|
|
, ncurses, notmuch, scdoc
|
|
, python3, w3m, dante
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "aerc";
|
|
version = "0.7.1";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~rjarry";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-wiylBBqnivDnMUyCg3Zateu4jcjicTfrQFALT8dg5No=";
|
|
};
|
|
|
|
proxyVendor = true;
|
|
vendorSha256 = "sha256-3BbKf2xSzXznCB5UU/cThVg329GSeJG9KwjaS+tN3Rs=";
|
|
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [
|
|
scdoc
|
|
python3.pkgs.wrapPython
|
|
];
|
|
|
|
patches = [
|
|
./runtime-sharedir.patch
|
|
];
|
|
|
|
pythonPath = [
|
|
python3.pkgs.colorama
|
|
];
|
|
|
|
buildInputs = [ python3 notmuch ];
|
|
|
|
buildPhase = "
|
|
runHook preBuild
|
|
# we use make instead of go build
|
|
runHook postBuild
|
|
";
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
make PREFIX=$out GOFLAGS="$GOFLAGS -tags=notmuch" install
|
|
wrapPythonProgramsIn $out/share/aerc/filters "$out $pythonPath"
|
|
runHook postInstall
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/aerc --prefix PATH ":" \
|
|
"$out/share/aerc/filters:${lib.makeBinPath [ ncurses ]}"
|
|
wrapProgram $out/share/aerc/filters/html --prefix PATH ":" \
|
|
${lib.makeBinPath [ w3m dante ]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "An email client for your terminal";
|
|
homepage = "https://aerc-mail.org/";
|
|
maintainers = with maintainers; [ tadeokondrak ];
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|