profanity: Add profanity, a ncurses XMPP client
This adds profanity, a ncurses irssi-style XMPP client, which depends on libstrophe.
This commit is contained in:
parent
ee36ef9891
commit
19aa2b5b0f
@ -0,0 +1,26 @@
|
||||
{ stdenv, fetchurl, automake, autoconf, pkgconfig, glib, openssl, expat, ncurses, libnotify, libotr, curl, libstrophe }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "profanity-${version}";
|
||||
version = "0.4.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.profanity.im/profanity-${version}.tar.gz";
|
||||
sha256 = "0qzwqxcxf695z3gf94psd2x619vlp4hkkjmkrpsla1ns0f6v6dkl";
|
||||
};
|
||||
|
||||
buildInputs = [ automake autoconf pkgconfig glib openssl expat ncurses libnotify libotr curl libstrophe ];
|
||||
|
||||
preConfigure = "sh bootstrap.sh";
|
||||
|
||||
meta = {
|
||||
description = "A console based XMPP client";
|
||||
longDescription = ''
|
||||
Profanity is a console based XMPP client written in C using ncurses and
|
||||
libstrophe, inspired by Irssi.
|
||||
'';
|
||||
homepage = http://profanity.im/;
|
||||
license = stdenv.lib.licenses.gpl3Plus;
|
||||
maintainers = [ stdenv.lib.maintainers.devhell ];
|
||||
};
|
||||
}
|
@ -10579,6 +10579,8 @@ let
|
||||
# And I don't want to rewrite all rules
|
||||
procmail = callPackage ../applications/misc/procmail { };
|
||||
|
||||
profanity = callPackage ../applications/networking/instant-messengers/profanity { };
|
||||
|
||||
pstree = callPackage ../applications/misc/pstree { };
|
||||
|
||||
pulseview = callPackage ../applications/science/electronics/pulseview { };
|
||||
|
Loading…
x
Reference in New Issue
Block a user