about summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders/sup/default.nix
blob: cfc471a57f0528ff35594d3d3bd023c113ba1804 (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
29
30
{ lib, bundlerApp, rake, which }:

# Updated with:
# rm gemset.nix Gemfile.lock
# nix-shell -p bundler bundix --run 'bundle lock && bundix'

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"
  ];

  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 ];
    platforms   = platforms.unix;
  };
}