* "!isNull x" -> "x != null". Done automatically. Hope nothing
broke. svn path=/nixpkgs/trunk/; revision=870
This commit is contained in:
@@ -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";
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{stdenv, fetchurl, m4}:
|
||||
|
||||
assert !isNull m4;
|
||||
assert m4 != null;
|
||||
|
||||
derivation {
|
||||
name = "bison-1.875c";
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{stdenv, fetchurl, m4}:
|
||||
assert !isNull m4;
|
||||
assert m4 != null;
|
||||
derivation {
|
||||
name = "bison-1.875";
|
||||
system = stdenv.system;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{stdenv, fetchurl, yacc}:
|
||||
assert !isNull yacc;
|
||||
assert yacc != null;
|
||||
derivation {
|
||||
name = "flex-2.5.4a";
|
||||
system = stdenv.system;
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
{stdenv, fetchurl, yacc, m4}:
|
||||
|
||||
assert !isNull yacc;
|
||||
assert yacc != null;
|
||||
|
||||
derivation {
|
||||
name = "flex-2.5.31";
|
||||
|
||||
Reference in New Issue
Block a user