Added Gajim XMPP client in nearly full-feature configuration with all dependencies

svn path=/nixpkgs/trunk/; revision=15001
This commit is contained in:
Michael Raskin
2009-04-12 19:34:20 +00:00
parent 7ce7e06811
commit 3d5d738895
7 changed files with 190 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
{stdenv, fetchurl, python, pkgconfig, glib, gtk, pygobject, pycairo}:
{stdenv, fetchurl, python, pkgconfig, glib, gtk, pygobject, pycairo
, libglade ? null}:
stdenv.mkDerivation {
name = "pygtk-2.10.4";
@@ -8,7 +9,9 @@ stdenv.mkDerivation {
sha256 = "1xg8vng42lql29aa5ryva8icc8dwdc7h2y3yn96qjdgl394d96mb";
};
buildInputs = [python pkgconfig glib gtk];
buildInputs = [python pkgconfig glib gtk]
++ (if libglade != null then [libglade] else [])
;
propagatedBuildInputs = [pygobject pycairo];
}