about summary refs log tree commit diff
path: root/pkgs/os-specific/darwin
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2024-03-28 00:02:30 +0000
committerGitHub <noreply@github.com>2024-03-28 00:02:30 +0000
commit944103e87561f375a6c82abf7c65444abba26342 (patch)
treea3e379f768fee520711cd18914fa9f4055ab7d38 /pkgs/os-specific/darwin
parenta834e0668023526fc2d4c7d4111f5f29284578ac (diff)
parent9c7e99a514c29bd4a52b3324d607d183b2330139 (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/os-specific/darwin')
-rw-r--r--pkgs/os-specific/darwin/mousecape/default.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/pkgs/os-specific/darwin/mousecape/default.nix b/pkgs/os-specific/darwin/mousecape/default.nix
deleted file mode 100644
index 39ee1e5ca072d..0000000000000
--- a/pkgs/os-specific/darwin/mousecape/default.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ lib
-, stdenvNoCC
-, fetchurl
-, unzip
-}:
-
-stdenvNoCC.mkDerivation (finalAttrs: {
-  pname = "mousecape";
-  version = "1813";
-
-  src = fetchurl {
-    url = "https://github.com/alexzielenski/Mousecape/releases/download/${finalAttrs.version}/Mousecape_${finalAttrs.version}.zip";
-    hash = "sha256-lp7HFGr1J+iQCUWVDplF8rFcTrGf+DX4baYzLsUi/9I=";
-  };
-
-  sourceRoot = ".";
-
-  nativeBuildInputs = [ unzip ];
-
-  installPhase = ''
-    runHook preInstall
-
-    mkdir -p $out/Applications
-    mv Mousecape.app $out/Applications
-
-    runHook postInstall
-  '';
-
-  meta = {
-    description = "A cursor manager for macOS built using private, nonintrusive CoreGraphics APIs";
-    homepage = "https://github.com/alexzielenski/Mousecape";
-    license = with lib; licenses.free;
-    maintainers = with lib; with maintainers; [ DontEatOreo ];
-    platforms = with lib; platforms.darwin;
-    sourceProvenance = with lib; with sourceTypes; [ binaryNativeCode ];
-  };
-})
-