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

24 lines
578 B
Nix
Raw Normal View History

{ lib, bundlerEnv, ruby }:
2013-05-26 01:07:28 -07:00
2015-01-21 12:20:42 -08:00
bundlerEnv {
2016-03-31 12:58:48 -07:00
name = "sup-0.22.1";
2014-05-04 17:21:16 -07:00
2015-01-21 12:20:42 -08:00
inherit ruby;
2016-03-31 12:58:48 -07:00
# Updated with:
# nix-shell -p bundix -p bundler -p ncurses -p ruby -p which -p zlib -p libuuid
# bundle install --path ./vendor
# bundix
2015-01-21 12:20:42 -08:00
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
2013-05-26 01:07:28 -07:00
2015-01-21 12:20:42 -08:00
meta = with lib; {
description = "A curses threads-with-tags style email client";
2018-09-01 15:31:08 -07:00
homepage = http://sup-heliotrope.github.io;
license = licenses.gpl2;
2015-01-21 12:20:42 -08:00
maintainers = with maintainers; [ cstrahan lovek323 ];
platforms = platforms.unix;
};
2013-05-26 01:07:28 -07:00
}