mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
238a6053c4
Co-authored-by: Robin Gloster <mail@glob.in> stdenv: print message if structuredAttrs is enabled stdenv: add _append reduces the chance of a user doing it wrong fix nix develop issue output hooks don't work yet in nix develop though making $outputs be the same on non-structuredAttrs and structuredAttrs is too much trouble. lets instead make a function that gets the output names reading environment file '/nix/store/2x7m69a2sm2kh0r6v0q5s9z1dh41m4xf-xz-5.2.5-env-bin' nix: src/nix/develop.cc:299: std::string Common::makeRcScript(nix::ref<nix::Store>, const BuildEnvironment&, const Path&): Assertion `outputs != buildEnvironment.vars.end()' failed. use a function to get all output names instead of using $outputs copy env functionality from https://github.com/NixOS/nixpkgs/pull/76732/commits
106 lines
3.8 KiB
Nix
106 lines
3.8 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.
|
|
};
|
|
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
|
|
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 = "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. `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;
|
|
};
|
|
}
|