about summary refs log tree commit diff
path: root/pkgs/data/icons/hicolor-icon-theme/default.nix
blob: 9d2f506def5b68615752775cd2fa65edabfe00e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, stdenvNoCC, fetchurl, meson, pkg-config, ninja }:

stdenvNoCC.mkDerivation rec {
  pname = "hicolor-icon-theme";
  version = "0.18";

  src = fetchurl {
    url = "https://icon-theme.freedesktop.org/releases/hicolor-icon-theme-${version}.tar.xz";
    hash = "sha256-2w5QqAqjv2S7RcvKXPn3Xv2TSM8qxpC5B0NSOMPPgdc=";
  };

  nativeBuildInputs = [
    meson
    pkg-config
    ninja
  ];

  setupHook = ./setup-hook.sh;

  meta = with lib; {
    description = "Default fallback theme used by implementations of the icon theme specification";
    homepage = "https://icon-theme.freedesktop.org/releases/";
    platforms = platforms.unix;
    license = licenses.gpl2Only;
  };
}