* "!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
+2 -2
View File
@@ -1,8 +1,8 @@
{ perlSupport, pythonSupport
, stdenv, fetchurl, perl ? null, python ? null}:
assert perlSupport -> !isNull perl;
assert pythonSupport -> !isNull python;
assert perlSupport -> perl != null;
assert pythonSupport -> python != null;
derivation {
name = "swig-1.3.19";