gqview: remove outdated assert, cleanup meta

+2 -5
+2 -5
pkgs/applications/graphics/gqview/default.nix
··· 1 1 { lib, stdenv, fetchurl, pkg-config, gtk2, libpng }: 2 2 3 - assert pkg-config != null && gtk2 != null && libpng != null; 4 - # Note that we cannot just copy gtk's png attribute, since gtk might 5 - # not be linked against png. 6 - # !!! assert libpng == gtk2.libpng; 7 - 8 3 stdenv.mkDerivation rec { 9 4 pname = "gqview"; 10 5 version = "2.1.5"; ··· 15 10 }; 16 11 17 12 nativeBuildInputs = [ pkg-config ]; 13 + 18 14 buildInputs = [ gtk2 libpng ]; 19 15 20 16 hardeningDisable = [ "format" ]; ··· 26 22 homepage = "http://gqview.sourceforge.net"; 27 23 license = licenses.gpl2; 28 24 platforms = platforms.unix; 25 + maintainers = with maintainers; [ ]; 29 26 }; 30 27 }