summary refs log tree commit diff
path: root/pkgs/development/libraries/dbus-glib
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-21 23:18:09 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-21 23:18:09 +0000
commit94d7d1fdbbb80718ff369389c1230ed77a4f7577 (patch)
treee6b513aa6e9bf61bcabcbfdfe7cd8f0dd052893f /pkgs/development/libraries/dbus-glib
parent2a699fe5fb15cd68473f59d986059bdb92228b75 (diff)
downloadnixpkgs-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar
nixpkgs-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar.gz
nixpkgs-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar.bz2
nixpkgs-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar.lz
nixpkgs-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar.xz
nixpkgs-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar.zst
nixpkgs-94d7d1fdbbb80718ff369389c1230ed77a4f7577.zip
* Got rid of all --disable-static flags; they're redundant now.
* Also a bunch of style cleanups (tabs, with args, ...).

svn path=/nixpkgs/branches/stdenv-updates/; revision=15235
Diffstat (limited to 'pkgs/development/libraries/dbus-glib')
-rw-r--r--pkgs/development/libraries/dbus-glib/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/development/libraries/dbus-glib/default.nix b/pkgs/development/libraries/dbus-glib/default.nix
index 9a9851521b4..bcc2ba1d314 100644
--- a/pkgs/development/libraries/dbus-glib/default.nix
+++ b/pkgs/development/libraries/dbus-glib/default.nix
@@ -2,18 +2,21 @@ args: with args;
 
 stdenv.mkDerivation rec {
   name = "dbus-glib-0.74";
+  
   src = fetchurl {
     url = "${meta.homepage}/releases/dbus-glib/${name}.tar.gz";
     sha256 = "1qmbnd9xgg7vahlfywd8sfd9yqhx8jdyczz3cshfsd4qc76xhw78";
   };
+  
   buildInputs = [pkgconfig expat gettext];
+  
   propagatedBuildInputs = [dbus.libs glib];
-  configureFlags = "--enable-shared --disable-static";
+  
   passthru = { inherit dbus glib; };
 
   meta = {
-	  homepage = http://dbus.freedesktop.org;
-	  license = "AFL-2.1 or GPL-2";
-	  description = "GLib bindings for D-Bus lightweight IPC mechanism";
+    homepage = http://dbus.freedesktop.org;
+    license = "AFL-2.1 or GPL-2";
+    description = "GLib bindings for D-Bus lightweight IPC mechanism";
   };
 }