summary refs log tree commit diff
path: root/pkgs/data/icons/hicolor-icon-theme/default.nix
blob: a0c9920177d73c067550ab4e4509eb0a5a5de9e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "hicolor-icon-theme-0.14";

  src = fetchurl {
    url = "http://icon-theme.freedesktop.org/releases/${name}.tar.xz";
    sha256 = "1k9fj0lb9b44inb5q5m04910x5nfkzrxl3ys9ckihqrixzk0dvbv";
  };

  setupHook = ./setup-hook.sh;

  meta = {
    description = "Default fallback theme used by implementations of the icon theme specification";
    homepage = http://icon-theme.freedesktop.org/releases/;
    platforms = stdenv.lib.platforms.linux;
  };
}