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.

74 lines
1.4 KiB
Nix
Raw Normal View History

2022-04-14 02:27:22 +00:00
{ lib
, buildGoModule
, fetchFromSourcehut
, ncurses
, notmuch
, scdoc
, python3
, w3m
, dante
}:
2020-06-07 11:06:05 +00:00
buildGoModule rec {
pname = "aerc";
2022-09-01 10:26:19 +00:00
version = "0.12.0";
src = fetchFromSourcehut {
2021-12-04 14:22:01 +00:00
owner = "~rjarry";
repo = pname;
rev = version;
2022-09-01 10:26:19 +00:00
hash = "sha256-n5rRvLhCy2d8xUoTNyM5JYKGJWN0nEwkQeBCOpUrUrc=";
};
2022-01-01 05:05:03 +00:00
proxyVendor = true;
2022-09-01 10:26:19 +00:00
vendorHash = "sha256-Z1dW3cK3Anl8JpAfwppsSBRgV5SdRmQemOG+652z0KA=";
doCheck = false;
nativeBuildInputs = [
scdoc
python3.pkgs.wrapPython
];
patches = [
./runtime-sharedir.patch
];
2022-02-24 14:46:51 +00:00
postPatch = ''
substituteAllInPlace config/aerc.conf
substituteAllInPlace config/config.go
substituteAllInPlace doc/aerc-config.5.scd
'';
2022-04-14 21:56:25 +00:00
makeFlags = [ "PREFIX=${placeholder "out"}" ];
2022-04-14 19:03:36 +00:00
pythonPath = [
python3.pkgs.colorama
];
buildInputs = [ python3 notmuch ];
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 ":" \
2021-01-15 05:42:41 +00:00
"$out/share/aerc/filters:${lib.makeBinPath [ ncurses ]}"
wrapProgram $out/share/aerc/filters/html --prefix PATH ":" \
2021-01-15 05:42:41 +00:00
${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;
};
2020-07-20 04:50:54 +00:00
}