3
0
Fork 0
forked from mirrors/nixpkgs

dbus: fixed a typo

svn path=/nixpkgs/branches/stdenv-updates/; revision=10466
This commit is contained in:
Yury G. Kudryashov 2008-02-02 20:42:36 +00:00
parent 1a12f687e2
commit e0d1a17680

View file

@ -21,7 +21,7 @@ in rec {
name = "dbus-tools-" + version;
inherit src configureFlags;
buildInputs = [pkgconfig expat libs]
++ if useX11 then [libX11 libICE libSM] else [];
++ (if useX11 then [libX11 libICE libSM] else []);
postConfigure = "cd tools";
NIX_LDFLAGS = "-ldbus-1";