about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/fu/fuchsia-cursor/package.nix
blob: 96fd659e47e739a6978212e897eee05dc6cd6b8c (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{ 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 = pname;
    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;
  };
}