From 9a4afa3f94dda5cdff95d225597ad25afe802e85 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 3 Feb 2004 14:44:48 +0000 Subject: * Fix undefined variables. svn path=/nixpkgs/trunk/; revision=744 --- 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 e9edb7f0bd00..b507c67b5f53 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 png; +assert !isNull pkgconfig && !isNull gtk && !isNull libpng; # 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