about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/profanity
diff options
context:
space:
mode:
authordev.hell <devhell@mailfresser.de>2015-01-04 20:23:15 +0000
committerdev.hell <devhell@mailfresser.de>2015-01-04 21:22:44 +0000
commit19aa2b5b0f5f18d67919485a9fa0ae45ad9efdad (patch)
treefc8c7221a989da61ec98e28eed70518484255116 /pkgs/applications/networking/instant-messengers/profanity
parentee36ef9891e1220d8875302a0886fc77f25e5515 (diff)
profanity: Add profanity, a ncurses XMPP client
This adds profanity, a ncurses irssi-style XMPP client, which depends on
libstrophe.
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/profanity')
-rw-r--r--pkgs/applications/networking/instant-messengers/profanity/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/profanity/default.nix b/pkgs/applications/networking/instant-messengers/profanity/default.nix
new file mode 100644
index 0000000000000..8f28c572b0009
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/profanity/default.nix
@@ -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 ];
+  };
+}