* "!isNull x" -> "x != null". Done automatically. Hope nothing

broke.

svn path=/nixpkgs/trunk/; revision=870
This commit is contained in:
Eelco Dolstra
2004-03-29 10:25:25 +00:00
parent e3ff964291
commit 2fcc5fdb08
47 changed files with 81 additions and 81 deletions
@@ -1,6 +1,6 @@
{stdenv, fetchurl, pkgconfig, gtk, libpng}:
assert !isNull pkgconfig && !isNull gtk && !isNull libpng;
assert pkgconfig != null && gtk != null && libpng != null;
# Note that we cannot just copy gtk's png attribute, since gtk might
# not be linked against png.
assert libpng == gtk.libpng;