chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / mi / mint-x-icons / package.nix
blobb4ee6d7259fa5f7d763b5a78e177080fa3576585
1 { fetchFromGitHub
2 , lib
3 , stdenvNoCC
4 , adwaita-icon-theme
5 , gnome-icon-theme
6 , hicolor-icon-theme
7 , gtk3
8 , humanity-icon-theme
9 , ubuntu-themes
12 stdenvNoCC.mkDerivation rec {
13   pname = "mint-x-icons";
14   version = "1.7.1";
16   src = fetchFromGitHub {
17     owner = "linuxmint";
18     repo = pname;
19     rev = version;
20     hash = "sha256-OiMQpVT5cydhw6Lb+vW+LiB/4gRuRhKXe93ocFj6qa4=";
21   };
23   propagatedBuildInputs = [
24     adwaita-icon-theme
25     gnome-icon-theme
26     hicolor-icon-theme
27     humanity-icon-theme
28     ubuntu-themes # provides ubuntu-mono-dark
29   ];
31   nativeBuildInputs = [
32     gtk3
33   ];
35   dontDropIconThemeCache = true;
37   installPhase = ''
38     runHook preInstall
40     mkdir -p $out
41     mv usr/share $out
43     for theme in $out/share/icons/*; do
44       gtk-update-icon-cache $theme
45     done
47     runHook postInstall
48   '';
50   meta = with lib; {
51     homepage = "https://github.com/linuxmint/mint-x-icons";
52     description = "Mint/metal theme based on mintified versions of Clearlooks Revamp, Elementary and Faenza";
53     license = licenses.gpl3Plus; # from debian/copyright
54     platforms = platforms.linux;
55     maintainers = teams.cinnamon.members;
56   };