about summary refs log tree commit diff
path: root/pkgs/desktops/cinnamon/mint-cursor-themes/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/cinnamon/mint-cursor-themes/default.nix')
-rw-r--r--pkgs/desktops/cinnamon/mint-cursor-themes/default.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/pkgs/desktops/cinnamon/mint-cursor-themes/default.nix b/pkgs/desktops/cinnamon/mint-cursor-themes/default.nix
deleted file mode 100644
index e0402b2f721b..000000000000
--- a/pkgs/desktops/cinnamon/mint-cursor-themes/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ stdenvNoCC
-, fetchFromGitHub
-, lib
-}:
-
-stdenvNoCC.mkDerivation rec {
-  pname = "mint-cursor-themes";
-  version = "1.0.2";
-
-  src = fetchFromGitHub {
-    owner = "linuxmint";
-    repo = pname;
-    # They don't really do tags, this is just a named commit.
-    rev = "d2c1428b499a347c291dafb13c89699fdbdd4be7";
-    hash = "sha256-i2Wf+OKwal9G5hkcAdmGSgX6txu1AHajqqPJdhpJoA0=";
-  };
-
-  installPhase = ''
-    runHook preInstall
-
-    mkdir -p $out
-    mv usr/share $out
-
-    runHook postInstall
-  '';
-
-  meta = with lib; {
-    homepage = "https://github.com/linuxmint/mint-cursor-themes/";
-    description = "Linux Mint cursor themes";
-    license = licenses.gpl3Plus;
-    maintainers = teams.cinnamon.members;
-    platforms = platforms.linux;
-  };
-}