about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/mo/mousecape/package.nix
blob: 7604b360dd6564f7252441107727a695e0e4e32b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ lib
, stdenvNoCC
, fetchzip
}:

stdenvNoCC.mkDerivation (finalAttrs: {
  pname = "mousecape";
  version = "1813";

  src = fetchzip {
    url = "https://github.com/alexzielenski/Mousecape/releases/download/${finalAttrs.version}/Mousecape_${finalAttrs.version}.zip";
    hash = "sha256-VjbvrXfsRFpbTJfIHFvyCxRdDcGNv0zzLToWn7lyLM8=";
  };

  installPhase = ''
    runHook preInstall

    mkdir -p $out/Applications/Mousecape.app
    cp -R . $out/Applications/Mousecape.app/

    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 ];
  };
})