nixpkgs/pkgs/applications/networking/mailreaders/notmuch/mutt.nix

47 lines
960 B
Nix
Raw Normal View History

{ stdenv, lib, perl, perlPackages, makeWrapper, coreutils, notmuch }:
2016-08-02 06:59:41 +00:00
stdenv.mkDerivation rec {
pname = "notmuch-mutt";
2016-08-02 06:59:41 +00:00
version = notmuch.version;
outputs = [ "out" ];
dontStrip = true;
buildInputs = [
perl
makeWrapper
] ++ (with perlPackages; [
FileRemove
DigestSHA1
Later
MailBox
MailMaildir
MailTools
StringShellQuote
TermReadLineGnu
]);
src = notmuch.src;
phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
installPhase = ''
${coreutils}/bin/install -Dm755 \
./contrib/notmuch-mutt/notmuch-mutt \
$out/bin/notmuch-mutt
wrapProgram $out/bin/notmuch-mutt \
--prefix PERL5LIB : $PERL5LIB
'';
meta = with lib; {
inherit version;
description = "Mutt support for notmuch";
homepage = "https://notmuchmail.org/";
license = with licenses; gpl3;
2016-08-02 06:59:41 +00:00
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.unix;
};
}