about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/icons/comixcursors/default.nix
blob: aa744878bcb3b337e1b5f2d8d0035e16bc7cced8 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{ lib, stdenv, fetchFromGitLab, bc, librsvg, xcursorgen }:

let
  dimensions = {
    color = [ "Black" "Blue" "Green" "Orange" "Red" "White" ];
    opacity = [ "" "Opaque_" ];  # Translucent or opaque.
    thickness = [ "" "Slim_" ];  # Thick or slim edges.
    handedness = [ "" "LH_" ];   # Right- or left-handed.
  };
  product = lib.cartesianProductOfSets dimensions;
  variantName =
    { color, opacity, thickness, handedness }:
    "${handedness}${opacity}${thickness}${color}";
  variants =
    # (The order of this list is already good looking enough to show in the
    # meta.longDescription.)
    map variantName product;
in
stdenv.mkDerivation rec {
  pname = "comixcursors";
  version = "0.9.2";

  src = fetchFromGitLab {
    owner = "limitland";
    repo = "comixcursors";
    # https://gitlab.com/limitland/comixcursors/-/issues/3
    rev = "8c327c8514ab3a352583605c1ddcb7eb3d1d302b";
    sha256 = "0bpxqw4izj7m0zb9lnxnmsjicfw60ppkdyv5nwrrz4x865wb296a";
  };

  nativeBuildInputs = [ bc librsvg xcursorgen ];

  patches = [ ./makefile-shell-var.patch ];

  postPatch = ''
    patchShebangs ./install-all ./bin/
  '';

  # install-all is used instead of the directions in upstream's INSTALL file,
  # because using its Makefile directly is broken.  Upstream itself seems to use
  # its build-distribution script instead, which also uses install-all, but we
  # do not use it because it does extra things for other distros.
  #
  # When not all of the variants, i.e. only a smaller subset of them, are
  # desired (i.e. when a subset of outputs are chosen), install-all will still
  # build all of them.  While upstream appears to provide old functionality for
  # building only a subset, it is broken and we do not use it.  With prebuilt
  # substitutions, installers of this package will get only the outputs they
  # chose.
  buildPhase = ''
    ICONSDIR=$TMP/staged ./install-all
  '';

  installPhase = ''
    for outputName in $outputs ; do
      if [ $outputName != out ]; then
        local outputDir=''${!outputName};
        local iconsDir=$outputDir/share/icons
        local cursorName=$(tr _ - <<<"$outputName")

        mkdir -p $iconsDir
        cp -r -d $TMP/staged/ComixCursors-$cursorName $iconsDir

        unset outputDir iconsDir cursorName
      fi
    done

    # Need this directory (empty) to prevent the builder scripts from breaking.
    mkdir -p $out
  '';

  outputs = let
    default = "Opaque_Black";
  in
    # Have the most-traditional variant be the default output (as the first).
    # Even with outputsToInstall=[], the default/first still has an effect on
    # some Nix tools (e.g. nix-build).
    [ default ] ++ (lib.remove default variants)
    # Need a dummy "out" output to prevent the builder scripts from breaking.
    ++ [ "out" ];

  # No default output (to the extent possible).  Instead, the outputs'
  # attributes are used to choose which variant(s) to have.
  outputsToInstall = [];

  meta = with lib; {
    description = "The Comix Cursors mouse themes";
    longDescription = ''
      There are many (${toString ((length outputs) - 1)}) variants of color,
      opacity, edge thickness, and right- or left-handedness, for this cursor
      theme.  This package's derivation has an output for each of these
      variants, named following the upstream convention, and the attribute for
      an output must be used to install a variant.  E.g.:
      <programlisting language="nix">
      environment.systemPackages = [
        comixcursors.Blue
        comixcursors.Opaque_Orange
        comixcursors.Slim_Red
        comixcursors.Opaque_Slim_White
        comixcursors.LH_Green
        comixcursors.LH_Opaque_Black
        comixcursors.LH_Slim_Orange
        comixcursors.LH_Opaque_Slim_Blue
      ];
      </programlisting>

      Attempting to use just <literal>comixcursors</literal>, i.e. without an
      output attribute, will not install any variants.  To install all the
      variants, use <literal>comixcursors.all</literal> (which is a list), e.g.:
      <programlisting language="nix">
      environment.systemPackages = comixcursors.all ++ [...];
      </programlisting>

      The complete list of output attributes is:
      <programlisting>
      ${concatStringsSep "\n" variants}
      </programlisting>
    '';
    homepage = "https://gitlab.com/limitland/comixcursors";
    changelog = "https://gitlab.com/limitland/comixcursors/-/blob/HEAD/NEWS";
    license = licenses.gpl3Plus;
    maintainers = [ maintainers.DerickEddington ];
    platforms = platforms.all;
  };
}