2015-01-22 01:33:19 +00:00
|
|
|
{ stdenv, lib, bundlerEnv, gpgme, ruby, ncurses, writeText, zlib, xapian
|
|
|
|
, pkgconfig, which }:
|
2013-05-26 09:07:28 +01:00
|
|
|
|
2015-01-21 20:20:42 +00:00
|
|
|
bundlerEnv {
|
|
|
|
name = "sup-0.20.0";
|
2014-05-05 01:21:16 +01:00
|
|
|
|
2015-01-21 20:20:42 +00:00
|
|
|
inherit ruby;
|
|
|
|
gemfile = ./Gemfile;
|
|
|
|
lockfile = ./Gemfile.lock;
|
|
|
|
gemset = ./gemset.nix;
|
2013-05-26 09:07:28 +01:00
|
|
|
|
2015-01-21 20:20:42 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A curses threads-with-tags style email client";
|
|
|
|
homepage = http://supmua.org;
|
|
|
|
license = with licenses; gpl2;
|
|
|
|
maintainers = with maintainers; [ cstrahan lovek323 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2013-05-26 09:07:28 +01:00
|
|
|
}
|