summary refs log tree commit diff
path: root/pkgs/development/python-modules/dbus
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2009-04-12 19:34:20 +0000
committerMichael Raskin <7c6f434c@mail.ru>2009-04-12 19:34:20 +0000
commit3d5d7388955f46c8773dc3a5cea03447b5f38967 (patch)
treed11e9faf65e419efa99a33bc4859557b2af5284e /pkgs/development/python-modules/dbus
parent7ce7e06811312393a4d99774af942c4e5747b4a9 (diff)
downloadnixpkgs-3d5d7388955f46c8773dc3a5cea03447b5f38967.tar
nixpkgs-3d5d7388955f46c8773dc3a5cea03447b5f38967.tar.gz
nixpkgs-3d5d7388955f46c8773dc3a5cea03447b5f38967.tar.bz2
nixpkgs-3d5d7388955f46c8773dc3a5cea03447b5f38967.tar.lz
nixpkgs-3d5d7388955f46c8773dc3a5cea03447b5f38967.tar.xz
nixpkgs-3d5d7388955f46c8773dc3a5cea03447b5f38967.tar.zst
nixpkgs-3d5d7388955f46c8773dc3a5cea03447b5f38967.zip
Added Gajim XMPP client in nearly full-feature configuration with all dependencies
svn path=/nixpkgs/trunk/; revision=15001
Diffstat (limited to 'pkgs/development/python-modules/dbus')
-rw-r--r--pkgs/development/python-modules/dbus/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/dbus/default.nix b/pkgs/development/python-modules/dbus/default.nix
new file mode 100644
index 00000000000..167f1f471ee
--- /dev/null
+++ b/pkgs/development/python-modules/dbus/default.nix
@@ -0,0 +1,29 @@
+a :  
+let 
+  fetchurl = a.fetchurl;
+
+  version = a.lib.getAttr ["version"] "0.83.0" a; 
+  buildInputs = with a; [
+    pkgconfig
+  ];
+  propagatedBuildInputs = with a; [
+    dbus python dbus_glib
+  ];
+in
+rec {
+  src = fetchurl {
+    url = "http://dbus.freedesktop.org/releases/dbus-python/dbus-python-${version}.tar.gz";
+    sha256 = "14b1fwq9jyvg9qbbrmpk1264s9shm9n638hsgmkh9fn2lmd1vpc9";
+  };
+
+  inherit buildInputs propagatedBuildInputs;
+  configureFlags = [];
+
+  /* doConfigure should be removed if not needed */
+  phaseNames = ["doConfigure" "doMakeInstall"];
+      
+  name = "python-dbus-" + version;
+  meta = {
+    description = "Python DBus bindings";
+  };
+}