This reverts commit 65a333600d5c88a98d674f637d092807cfc12253. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
80 lines
2.0 KiB
Nix
80 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchFromGitHub,
|
|
clickgen,
|
|
python3,
|
|
themeVariants ? [ ],
|
|
sizeVariants ? [ ],
|
|
platformVariants ? [ ],
|
|
}:
|
|
|
|
let
|
|
pname = "fuchsia-cursor";
|
|
in
|
|
lib.checkListOfEnum "${pname}: theme variants" [ "Fuchsia" "Fuchsia-Pop" "Fuchsia-Red" ]
|
|
themeVariants
|
|
lib.checkListOfEnum
|
|
"${pname}: size variants"
|
|
[ "16" "24" "32" "48" ]
|
|
sizeVariants
|
|
lib.checkListOfEnum
|
|
"${pname}: platform variants"
|
|
[ "x11" "windows" ]
|
|
platformVariants
|
|
|
|
stdenvNoCC.mkDerivation
|
|
rec {
|
|
inherit pname;
|
|
version = "2.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ful1e5";
|
|
repo = "fuchsia-cursor";
|
|
rev = "v${version}";
|
|
hash = "sha256-WnDtUsjRXT7bMppgwU5BIDqphP69DmPzQM/0qXES5tM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
clickgen
|
|
python3.pkgs.attrs
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
${
|
|
if themeVariants != [ ] then
|
|
''
|
|
name= ctgen build.toml \
|
|
${
|
|
lib.optionalString (themeVariants != [ ]) "-d bitmaps/"
|
|
+ toString themeVariants
|
|
+ " -n "
|
|
+ toString themeVariants
|
|
} \
|
|
${lib.optionalString (sizeVariants != [ ]) "-s " + toString sizeVariants} \
|
|
${lib.optionalString (platformVariants != [ ]) "-p " + toString platformVariants} \
|
|
-o $out/share/icons
|
|
''
|
|
else
|
|
''
|
|
name= ctgen build.toml -d bitmaps/Fuchsia -n Fuchsia \
|
|
${lib.optionalString (sizeVariants != [ ]) "-s " + toString sizeVariants} \
|
|
${lib.optionalString (platformVariants != [ ]) "-p " + toString platformVariants} \
|
|
-o $out/share/icons
|
|
''
|
|
}
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "First OpenSource port of FuchsiaOS's cursors for Linux and Windows";
|
|
homepage = "https://github.com/ful1e5/fuchsia-cursor";
|
|
maintainers = with maintainers; [ d3vil0p3r ];
|
|
platforms = platforms.all;
|
|
license = licenses.gpl3Plus;
|
|
};
|
|
}
|