* "!isNull x" -> "x != null". Done automatically. Hope nothing
broke. svn path=/nixpkgs/trunk/; revision=870
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
{stdenv, fetchurl, x11, libpng, libjpeg, expat}:
|
||||
|
||||
assert !isNull x11 && !isNull libpng && !isNull libjpeg
|
||||
&& !isNull expat;
|
||||
assert x11 != null && libpng != null && libjpeg != null
|
||||
&& expat != null;
|
||||
|
||||
derivation {
|
||||
name = "graphviz-1.10";
|
||||
|
||||
Reference in New Issue
Block a user