gqview: remove outdated assert, cleanup meta

+2 -5
+2 -5
pkgs/applications/graphics/gqview/default.nix
··· 1 { lib, stdenv, fetchurl, pkg-config, gtk2, libpng }: 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 stdenv.mkDerivation rec { 9 pname = "gqview"; 10 version = "2.1.5"; ··· 15 }; 16 17 nativeBuildInputs = [ pkg-config ]; 18 buildInputs = [ gtk2 libpng ]; 19 20 hardeningDisable = [ "format" ]; ··· 26 homepage = "http://gqview.sourceforge.net"; 27 license = licenses.gpl2; 28 platforms = platforms.unix; 29 }; 30 }
··· 1 { lib, stdenv, fetchurl, pkg-config, gtk2, libpng }: 2 3 stdenv.mkDerivation rec { 4 pname = "gqview"; 5 version = "2.1.5"; ··· 10 }; 11 12 nativeBuildInputs = [ pkg-config ]; 13 + 14 buildInputs = [ gtk2 libpng ]; 15 16 hardeningDisable = [ "format" ]; ··· 22 homepage = "http://gqview.sourceforge.net"; 23 license = licenses.gpl2; 24 platforms = platforms.unix; 25 + maintainers = with maintainers; [ ]; 26 }; 27 }