about summary refs log tree commit diff
path: root/pkgs/os-specific/darwin
diff options
context:
space:
mode:
authorDontEatOreo <57304299+DontEatOreo@users.noreply.github.com>2024-03-27 18:28:50 +0200
committerDontEatOreo <57304299+DontEatOreo@users.noreply.github.com>2024-03-27 18:43:54 +0200
commitba1834b908cfc37e13e60d1eebafbbfe0519b4ff (patch)
treee27cc84c414f55f4e829a3b1cfc5b856baba0d18 /pkgs/os-specific/darwin
parent9b1984ce3648bf9479a67820876d72700c3faa4f (diff)
mousecape: move to by-name/mo
- Previously package resided in darwin/mousecape due to confusion, this
  breaks the pkgs category hierarchy as mentioned by
  https://github.com/NixOS/nixpkgs/pull/299032#issuecomment-2021684755
- Also switched to using fetchzip
- Fixed maintainer name
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 ];
-  };
-})
-