about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/centerim
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-01-12 18:55:08 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-01-12 18:55:08 +0000
commit72aa6f5ffcda099ae0c5dee4c547eae9df294d1e (patch)
treeda0db16a8aa080da1d0b4de3bc29c0c668b8aa55 /pkgs/applications/networking/instant-messengers/centerim
parent0fa0da35ef96cc9a3c8895ab9858e579358dd604 (diff)
Adding centerim.
svn path=/nixpkgs/trunk/; revision=31503
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/centerim')
-rw-r--r--pkgs/applications/networking/instant-messengers/centerim/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/centerim/default.nix b/pkgs/applications/networking/instant-messengers/centerim/default.nix
new file mode 100644
index 0000000000000..524b206059fe0
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/centerim/default.nix
@@ -0,0 +1,21 @@
+{stdenv, fetchurl, openssl, curl, ncurses, gpgme, libjpeg }:
+
+stdenv.mkDerivation rec {
+  name = "centerim-4.22.10";
+
+  src = fetchurl {
+    url = "http://centerim.org/download/releases/${name}.tar.gz";
+    sha256 = "0viz86jflp684vfginhl6aaw4gh2qvalc25anlwljjl3kkmibklk";
+  };
+
+  buildInputs = [ openssl curl ncurses gpgme libjpeg ];
+
+  configureFlags = [ "--with-openssl=${openssl}" ];
+
+  meta = {
+    homepage = http://www.centerim.org/;
+    description = "Fork of CenterICQ, a curses instant messaging program";
+    license = "GPLv2+";
+    platforms = with stdenv.lib.platforms; linux;
+  };
+}