about summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders/sup/default.nix
blob: 06777916b92af0ca906bc4e5eae1db2d85dcaa0c (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
{ lib, bundlerEnv, ruby }:

bundlerEnv {
  name = "sup-0.22.1";

  inherit ruby;

  # Updated with:
  # nix-shell -p bundix -p bundler -p ncurses -p ruby -p which -p zlib -p libuuid
  # bundle install --path ./vendor
  # bundix
  gemfile = ./Gemfile;
  lockfile = ./Gemfile.lock;
  gemset = ./gemset.nix;

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