Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
fetchzip,
|
|
stdenv,
|
|
}:
|
|
|
|
let
|
|
_src =
|
|
variant: suffix: hash:
|
|
fetchzip (
|
|
{
|
|
name = variant;
|
|
url = "https://github.com/ful1e5/apple_cursor/releases/download/v${version}/${variant}.${suffix}";
|
|
hash = hash;
|
|
}
|
|
// (lib.optionalAttrs (suffix == "zip") { stripRoot = false; })
|
|
// (lib.optionalAttrs (suffix == "tar.xz") { stripRoot = false; })
|
|
);
|
|
|
|
srcs = [
|
|
(_src "macOS" "tar.xz" "sha256-nS4g+VwM+4q/S1ODb3ySi2SBk7Ha8vF8d9XpP5cEkok=")
|
|
];
|
|
version = "2.0.1";
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "apple_cursor";
|
|
inherit version;
|
|
inherit srcs;
|
|
|
|
sourceRoot = ".";
|
|
|
|
installPhase = ''
|
|
install -dm 0755 $out/share/icons
|
|
cp -r macOS/macOS* $out/share/icons/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Opensource macOS Cursors";
|
|
homepage = "https://github.com/ful1e5/apple_cursor";
|
|
license = [
|
|
licenses.gpl3Only
|
|
# Potentially a derivative work of copyrighted Apple designs
|
|
licenses.unfree
|
|
];
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [
|
|
colemickens
|
|
dxwil
|
|
];
|
|
};
|
|
}
|