1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-28 00:22:13 +00:00
nixpkgs/pkgs/applications/networking/mailreaders/notmuch/mutt.nix

47 lines
968 B
Nix
Raw Normal View History

{ stdenv, lib, perl, perlPackages, makeWrapper, coreutils, notmuch }:
2016-08-02 07:59:41 +01:00
stdenv.mkDerivation rec {
name = "notmuch-mutt-${version}";
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 07:59:41 +01:00
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.unix;
};
}