2019-07-22 13:02:47 +01:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2014-05-05 01:21:16 +01:00
|
|
|
|
2019-04-30 19:13:18 +01:00
|
|
|
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"
|
|
|
|
];
|
2013-05-26 09:07:28 +01:00
|
|
|
|
2019-07-22 13:02:47 +01:00
|
|
|
passthru.updateScript = bundlerUpdateScript "sup";
|
|
|
|
|
2015-01-21 20:20:42 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A curses threads-with-tags style email client";
|
2018-09-01 23:31:08 +01:00
|
|
|
homepage = http://sup-heliotrope.github.io;
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl2;
|
2019-07-22 13:02:47 +01:00
|
|
|
maintainers = with maintainers; [ cstrahan lovek323 manveru nicknovitski ];
|
2015-01-21 20:20:42 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2013-05-26 09:07:28 +01:00
|
|
|
}
|