perlXMLParser -> perlPackages.XMLParser

This commit is contained in:
volth
2018-10-12 22:56:15 +00:00
parent ef93155f60
commit c0fed1ba77
20 changed files with 77 additions and 73 deletions

View File

@@ -1,4 +1,4 @@
{stdenv, fetchurl, pkgconfig, gettext, perl, perlXMLParser, intltool
{stdenv, fetchurl, pkgconfig, gettext, perlPackages, intltool
, libxml2, glib}:
let version = "1.10"; in
@@ -11,8 +11,8 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
pkgconfig gettext intltool perl perlXMLParser libxml2 glib
];
pkgconfig gettext intltool libxml2 glib
] ++ (with perlPackages; [ perl XMLParser ]);
meta = with stdenv.lib; {
inherit version;