about summary refs log tree commit diff
path: root/pkgs/data/icons/hicolor-icon-theme/default.nix
blob: f8eb7bc032eafa199c5af5adabf95d014820079e (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.13";

  src = fetchurl {
    url = "http://icon-theme.freedesktop.org/releases/${name}.tar.gz";
    sha256 = "01ilkizzal3wq2naaj84rqmd850aari1ahiw9vfis3a82n4h72x3";
  };

  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;
  };
}