about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/mailreaders/sup/default.nix
blob: ccd092ba63cc4352dd9b63c31e98b83e715b82f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "sup";
  gemdir = ./.;
  exes = [
    "sup"
    "sup-add"
    "sup-config"
    "sup-dump"
    "sup-import-dump"
    "sup-psych-ify-config-files"
    "sup-recover-sources"
    "sup-sync"
    "sup-sync-back-maildir"
    "sup-tweak-labels"
  ];

  passthru.updateScript = bundlerUpdateScript "sup";

  meta = with lib; {
    description = "A curses threads-with-tags style email client";
    homepage    = http://sup-heliotrope.github.io;
    license     = licenses.gpl2;
    maintainers = with maintainers; [ cstrahan lovek323 manveru nicknovitski ];
    platforms   = platforms.unix;
  };
}