* 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
This commit is contained in:
@@ -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";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user