From e0d76ed8b256bb9d2f820fc8f04c017dee1ab03b Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Thu, 15 May 2008 17:50:49 +0000 Subject: [PATCH] Added Funpidgin - a pidgin IM fork svn path=/nixpkgs/trunk/; revision=11827 --- .../instant-messengers/funpidgin/2.4.1.nix | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pkgs/applications/networking/instant-messengers/funpidgin/2.4.1.nix diff --git a/pkgs/applications/networking/instant-messengers/funpidgin/2.4.1.nix b/pkgs/applications/networking/instant-messengers/funpidgin/2.4.1.nix new file mode 100644 index 00000000000..9b460e5a455 --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/funpidgin/2.4.1.nix @@ -0,0 +1,29 @@ +args : with args; +rec { + src = fetchurl { + url = http://downloads.sourceforge.net/funpidgin/funpidgin-2.4.1.tar.bz2; + sha256 = "1slzvgwaxl19fdyg7k12nqsvvbjaqv6ivfzwkbvm09596ag5r3mn"; + }; + + buildInputs = [gtkspell aspell + GStreamer startupnotification + libxml2 openssl nss + libXScrnSaver ncurses scrnsaverproto + libX11 xproto]; + + propagatedBuildInputs = [ + pkgconfig gtk perl perlXMLParser gettext + ]; + + configureFlags="--with-nspr-includes=${nss}/include/nspr --with-nspr-libs=${nss}/lib --with-nss-includes=${nss}/include/nss --with-nss-libs=${nss}/lib --with-ncurses-headers=${ncurses}/include --enable-screensaver"; + + /* doConfigure should be specified separately */ + phaseNames = ["doConfigure" "doMakeInstall"]; + + name = "funpidgin-" + version; + meta = { + description = "Funpidgin - PidginIM fork with user-friendly development model"; + homepage = http://funpidgin.sf.net; + }; +} +