nixpkgs/pkgs/applications/networking/mailreaders/aerc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

80 lines
1.7 KiB
Nix
Raw Normal View History

2022-04-14 02:27:22 +00:00
{ lib
, buildGoModule
, fetchFromSourcehut
, ncurses
, notmuch
, scdoc
, python3
, w3m
, dante
, gawk
}:
2020-06-07 11:06:05 +00:00
buildGoModule rec {
pname = "aerc";
2024-02-01 04:35:43 +00:00
version = "0.17.0";
src = fetchFromSourcehut {
2021-12-04 14:22:01 +00:00
owner = "~rjarry";
2022-10-22 14:22:38 +00:00
repo = "aerc";
rev = version;
2024-02-01 04:35:43 +00:00
hash = "sha256-XpVUUAtm6o4DXIouTKRX/8mLERb/4nA+VUGeB21mfjE=";
};
2022-01-01 05:05:03 +00:00
proxyVendor = true;
2024-04-05 21:00:12 +00:00
vendorHash = "sha256-AHEhIWa6PP8f+hhIdY+0brLF2HYhvTal7qXfCwG9iyo=";
nativeBuildInputs = [
scdoc
python3.pkgs.wrapPython
];
patches = [
./runtime-libexec.patch
];
2022-02-24 14:46:51 +00:00
postPatch = ''
substituteAllInPlace config/aerc.conf
substituteAllInPlace config/config.go
substituteAllInPlace doc/aerc-config.5.scd
# Prevent buildGoModule from trying to build this
rm contrib/linters.go
2022-02-24 14:46:51 +00:00
'';
2022-04-14 21:56:25 +00:00
makeFlags = [ "PREFIX=${placeholder "out"}" ];
2022-04-14 19:03:36 +00:00
pythonPath = [
python3.pkgs.vobject
];
buildInputs = [ python3 notmuch gawk ];
installPhase = ''
runHook preInstall
2022-04-14 21:56:25 +00:00
make $makeFlags GOFLAGS="$GOFLAGS -tags=notmuch" install
runHook postInstall
'';
postFixup = ''
wrapProgram $out/bin/aerc \
--prefix PATH ":" "${lib.makeBinPath [ ncurses ]}"
wrapProgram $out/libexec/aerc/filters/html \
--prefix PATH ":" ${lib.makeBinPath [ w3m dante ]}
wrapProgram $out/libexec/aerc/filters/html-unsafe \
--prefix PATH ":" ${lib.makeBinPath [ w3m dante ]}
patchShebangs $out/libexec/aerc/filters
'';
meta = with lib; {
description = "An email client for your terminal";
homepage = "https://aerc-mail.org/";
maintainers = with maintainers; [ tadeokondrak ];
mainProgram = "aerc";
license = licenses.mit;
platforms = platforms.unix;
};
2020-07-20 04:50:54 +00:00
}