mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
41 lines
1.0 KiB
Nix
41 lines
1.0 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 rec {
|
|
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 ];
|
|
};
|
|
}
|