summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/funpidgin/2.4.1.nix
blob: 8db711c2f6d07da99613fb8b1d3fe6c89d2eebd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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 kbproto];

  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; 
  };
}