nixpkgs/pkgs/applications/networking/mailreaders/sup/default.nix

29 lines
656 B
Nix
Raw Normal View History

{ 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
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;
license = licenses.gpl2;
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
}