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

25 lines
632 B
Nix
Raw Normal View History

2015-01-22 01:33:19 +00:00
{ stdenv, lib, bundlerEnv, gpgme, ruby, ncurses, writeText, zlib, xapian
, pkgconfig, which }:
2013-05-26 08:07:28 +00:00
2015-01-21 20:20:42 +00:00
bundlerEnv {
2016-03-31 19:58:48 +00:00
name = "sup-0.22.1";
2014-05-05 00:21:16 +00:00
2015-01-21 20:20:42 +00:00
inherit ruby;
2016-03-31 19:58:48 +00: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 20:20:42 +00:00
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
2013-05-26 08:07:28 +00: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 = licenses.gpl2;
2015-01-21 20:20:42 +00:00
maintainers = with maintainers; [ cstrahan lovek323 ];
platforms = platforms.unix;
};
2013-05-26 08:07:28 +00:00
}