mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
shared-mime-info: Add dependency on Perl (for Intltool).
svn path=/nixpkgs/branches/stdenv-updates/; revision=14665
This commit is contained in:
parent
03ea1d4e45
commit
8a13ebda3a
@ -1,4 +1,5 @@
|
||||
{stdenv, fetchurl, pkgconfig, gettext, intltool, libxml2, glib}:
|
||||
{stdenv, fetchurl, pkgconfig, gettext, perl, perlXMLParser, intltool
|
||||
, libxml2, glib}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "shared-mime-info-0.51";
|
||||
@ -8,7 +9,9 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1n7fn3vnqdq5c4xjyflwryxdb75cwsmw39hdpjy90swd841pw90w";
|
||||
};
|
||||
|
||||
buildInputs = [pkgconfig gettext intltool libxml2 glib];
|
||||
buildInputs = [
|
||||
pkgconfig gettext intltool perl perlXMLParser libxml2 glib
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "A database of common MIME types";
|
||||
|
@ -7485,7 +7485,8 @@ let
|
||||
};
|
||||
|
||||
shared_mime_info = import ../data/misc/shared-mime-info {
|
||||
inherit fetchurl stdenv pkgconfig gettext intltool libxml2;
|
||||
inherit fetchurl stdenv pkgconfig gettext
|
||||
intltool perl perlXMLParser libxml2;
|
||||
inherit (gtkLibs) glib;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user