ef9b025dbe
svn path=/nixpkgs/trunk/; revision=6716
14 lines
358 B
Nix
14 lines
358 B
Nix
{input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser}:
|
|
|
|
assert pkgconfig != null && perl != null;
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (input) name src;
|
|
buildInputs = [pkgconfig perl perlXMLParser];
|
|
|
|
# TODO: maybe this package as dependency on gnome-themes?
|
|
configureFlags = "--disable-hicolor-check";
|
|
|
|
patches = [./gnome-icon-theme-2.14.2.patch];
|
|
}
|