about summary refs log tree commit diff
path: root/pkgs/desktops/cinnamon/mint-x-icons/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/cinnamon/mint-x-icons/default.nix')
-rw-r--r--pkgs/desktops/cinnamon/mint-x-icons/default.nix57
1 files changed, 0 insertions, 57 deletions
diff --git a/pkgs/desktops/cinnamon/mint-x-icons/default.nix b/pkgs/desktops/cinnamon/mint-x-icons/default.nix
deleted file mode 100644
index 8b045980c44a..000000000000
--- a/pkgs/desktops/cinnamon/mint-x-icons/default.nix
+++ /dev/null
@@ -1,57 +0,0 @@
-{ fetchFromGitHub
-, lib
-, stdenvNoCC
-, gnome
-, gnome-icon-theme
-, hicolor-icon-theme
-, gtk3
-, humanity-icon-theme
-, ubuntu-themes
-}:
-
-stdenvNoCC.mkDerivation rec {
-  pname = "mint-x-icons";
-  version = "1.6.9";
-
-  src = fetchFromGitHub {
-    owner = "linuxmint";
-    repo = pname;
-    rev = version;
-    hash = "sha256-J5Osy+VosyBhwiiwELMtjDTf3/J6DpuQ4c9DO06fo+4=";
-  };
-
-  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;
-  };
-}