mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +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.
52 lines
1.2 KiB
Nix
52 lines
1.2 KiB
Nix
{ stdenvNoCC
|
|
, fetchzip
|
|
, lib
|
|
}:
|
|
|
|
let
|
|
colors = [
|
|
{
|
|
name = "Black";
|
|
hash = "sha256-pb2U9j1m8uJaILxUxKqp8q9FGuwzZsQvhPP3bfGZL5I=";
|
|
}
|
|
{
|
|
name = "Blue";
|
|
hash = "sha256-PmJeGShQLIC7ceRwQvSbphqz19fKptksZeHKi9QSL5Y=";
|
|
}
|
|
{
|
|
name = "Red";
|
|
hash = "sha256-/X81jLoWaw4UMoDRf1f6oaKKRWexQc4PAACy3doV4Kc=";
|
|
}
|
|
{
|
|
name = "White";
|
|
hash = "sha256-eT/Zy6O6TBD6G8q/dg+9rNYDHutLLxEY1lvLDP90b+g=";
|
|
}
|
|
];
|
|
in
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "google-cursor";
|
|
version = "2.0.0";
|
|
|
|
sourceRoot = ".";
|
|
srcs = map
|
|
(color: (fetchzip {
|
|
url = "https://github.com/ful1e5/Google_Cursor/releases/download/v${finalAttrs.version}/GoogleDot-${color.name}.tar.gz";
|
|
name = "GoogleDot-${color.name}";
|
|
hash = color.hash;
|
|
}))
|
|
colors;
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/icons
|
|
cp -r GoogleDot-* $out/share/icons
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Opensource cursor theme inspired by Google";
|
|
homepage = "https://github.com/ful1e5/Google_Cursor";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ quadradical ];
|
|
};
|
|
})
|