Skip to content

Commit

Permalink
mutt: fetch {sidebar,trash}.patch from AUR
Browse files Browse the repository at this point in the history
  • Loading branch information
joachifm committed Jul 16, 2016
1 parent 3bfe30a commit a317a15
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5,250 deletions.
14 changes: 11 additions & 3 deletions pkgs/applications/networking/mailreaders/mutt/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, ncurses, which, perl, autoreconfHook
{ stdenv, fetchurl, fetchpatch, ncurses, which, perl, autoreconfHook
, gdbm ? null
, openssl ? null
, cyrus_sasl ? null
Expand Down Expand Up @@ -61,8 +61,16 @@ stdenv.mkDerivation rec {
++ optional saslSupport "--with-sasl";

patches =
optional withTrash ./trash.patch ++
optional withSidebar ./sidebar.patch;
optional withTrash (fetchpatch {
name = "trash.patch";
url = "https://aur.archlinux.org/cgit/aur.git/plain/trash.patch?h=mutt-sidebar";
sha256 = "1hrib9jk28mqd02nzv0sx01jfdabzvnwcc5qjc3810zfglzc1nql";
}) ++
optional withSidebar (fetchpatch {
name = "sidebar.patch";
url = "https://aur.archlinux.org/cgit/aur.git/plain/sidebar.patch?h=mutt-sidebar";
sha256 = "1l63wj7kw41jrh00mcxdw4p4vrbc9wld42s99liw8kz2aclymq5m";
});

meta = {
description = "A small but very powerful text-based mail client";
Expand Down
Loading

0 comments on commit a317a15

Please sign in to comment.