summary refs log tree commit diff
path: root/pkgs/development/libraries/gnome/gnome-icon-theme/default.nix
blob: e5c7d408c65e437bf95392bdf5ecfc1d503f081c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{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];
}