mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
139 lines
4.0 KiB
Nix
139 lines
4.0 KiB
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
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.
|
|
};
|
|
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.)
|
|
lib.mapCartesianProduct variantName dimensions;
|
|
in
|
|
stdenvNoCC.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 $(getAllOutputNames) ; 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 = "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. `comixcursors.LH_Opaque_Slim_Blue`. Attempting to use only
|
|
`comixcursors`, i.e. without an output attribute, will not install any
|
|
variants. To install all the variants, use `comixcursors.all` (which is a
|
|
list).
|
|
'';
|
|
homepage = "https://gitlab.com/limitland/comixcursors";
|
|
changelog = "https://gitlab.com/limitland/comixcursors/-/blob/HEAD/NEWS";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.DerickEddington ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|