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

19 lines
512 B
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
2018-02-25 17:53:06 +00:00
name = "hicolor-icon-theme-0.17";
src = fetchurl {
url = "https://icon-theme.freedesktop.org/releases/${name}.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;
};
}