58 lines
1.2 KiB
Nix
58 lines
1.2 KiB
Nix
{ fetchFromGitHub
|
|
, lib
|
|
, stdenv
|
|
, gnome
|
|
, gnome-icon-theme
|
|
, hicolor-icon-theme
|
|
, gtk3
|
|
, humanity-icon-theme
|
|
, ubuntu-themes
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mint-x-icons";
|
|
version = "1.6.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxmint";
|
|
repo = pname;
|
|
# they don't exactly do tags, it's just a named commit
|
|
rev = "4ab3c314db1b3751d87d5769629b28ac0ca3c671";
|
|
hash = "sha256-cPRae3EjzVtAL1Ei2LB4UNUU/m87mFT94xY/NnNR6JM=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
gnome.adwaita-icon-theme
|
|
gnome-icon-theme
|
|
hicolor-icon-theme
|
|
humanity-icon-theme
|
|
ubuntu-themes # provides ubuntu-mono-dark
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
gtk3
|
|
];
|
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out
|
|
mv usr/share $out
|
|
|
|
for theme in $out/share/icons/*; do
|
|
gtk-update-icon-cache $theme
|
|
done
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/linuxmint/mint-x-icons";
|
|
description = "Mint/metal theme based on mintified versions of Clearlooks Revamp, Elementary and Faenza";
|
|
license = licenses.gpl3Plus; # from debian/copyright
|
|
platforms = platforms.linux;
|
|
maintainers = teams.cinnamon.members;
|
|
};
|
|
}
|