From 2fcc5fdb08708b8c99c9341d43950fe65e93128a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 29 Mar 2004 10:25:25 +0000 Subject: * "!isNull x" -> "x != null". Done automatically. Hope nothing broke. svn path=/nixpkgs/trunk/; revision=870 --- pkgs/applications/graphics/gqview/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgs/applications/graphics/gqview') diff --git a/pkgs/applications/graphics/gqview/default.nix b/pkgs/applications/graphics/gqview/default.nix index b507c67b5f53..2fd40e983b60 100644 --- a/pkgs/applications/graphics/gqview/default.nix +++ b/pkgs/applications/graphics/gqview/default.nix @@ -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; -- cgit 1.4.1