nixpkgs/pkgs/data/icons/hicolor-icon-theme/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
591 B
Nix
Raw Normal View History

{ lib, stdenvNoCC, fetchurl }:
stdenvNoCC.mkDerivation rec {
pname = "hicolor-icon-theme";
version = "0.17";
src = fetchurl {
url = "https://icon-theme.freedesktop.org/releases/hicolor-icon-theme-${version}.tar.xz";
2018-02-25 17:53:06 +00:00
sha256 = "1n59i3al3zx6p90ff0l43gzpzmlqnzm6hf5cryxqrlbi48sq8x1i";
};
2015-02-24 09:51:46 +00:00
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/";
2018-02-24 11:14:00 +00:00
platforms = platforms.unix;
2022-11-02 22:14:08 +00:00
license = licenses.gpl2Only;
};
}