catppuccin-cursors: init at unstable-2022-08-23
This commit is contained in:
parent
2da64a8127
commit
c03626c2e3
3 changed files with 92 additions and 0 deletions
|
@ -10386,6 +10386,15 @@
|
||||||
fingerprint = "B00F E582 FD3F 0732 EA48 3937 F558 14E4 D687 4375";
|
fingerprint = "B00F E582 FD3F 0732 EA48 3937 F558 14E4 D687 4375";
|
||||||
}];
|
}];
|
||||||
};
|
};
|
||||||
|
PlayerNameHere = {
|
||||||
|
name = "Dixon Sean Low Yan Feng";
|
||||||
|
email = "dixonseanlow@protonmail.com";
|
||||||
|
github = "PlayerNameHere";
|
||||||
|
githubId = 56017218;
|
||||||
|
keys = [{
|
||||||
|
fingerprint = "E6F4 BFB4 8DE3 893F 68FC A15F FF5F 4B30 A41B BAC8";
|
||||||
|
}];
|
||||||
|
};
|
||||||
plchldr = {
|
plchldr = {
|
||||||
email = "mail@oddco.de";
|
email = "mail@oddco.de";
|
||||||
github = "plchldr";
|
github = "plchldr";
|
||||||
|
|
81
pkgs/data/icons/catppuccin-cursors/default.nix
Normal file
81
pkgs/data/icons/catppuccin-cursors/default.nix
Normal file
|
@ -0,0 +1,81 @@
|
||||||
|
{ lib
|
||||||
|
, stdenvNoCC
|
||||||
|
, fetchFromGitHub
|
||||||
|
, inkscape
|
||||||
|
, xcursorgen
|
||||||
|
, makeFontsConf
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
dimensions = {
|
||||||
|
palette = [ "Frappe" "Latte" "Macchiato" "Mocha" ];
|
||||||
|
color = [ "Blue" "Dark" "Flamingo" "Green" "Lavender" "Light" "Maroon" "Mauve" "Peach" "Pink" "Red" "Rosewater" "Sapphire" "Sky" "Teal" "Yellow" ];
|
||||||
|
};
|
||||||
|
product = lib.attrsets.cartesianProductOfSets dimensions;
|
||||||
|
variantName = { palette, color }: (lib.strings.toLower palette) + color;
|
||||||
|
variants = map variantName product;
|
||||||
|
in
|
||||||
|
stdenvNoCC.mkDerivation {
|
||||||
|
pname = "catppuccin-cursors";
|
||||||
|
version = "unstable-2022-08-23";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "catppuccin";
|
||||||
|
repo = "cursors";
|
||||||
|
rev = "3d3023606939471c45cff7b643bffc5d5d4ff29c";
|
||||||
|
sha256 = "1z9cjxxsj3vrmhsw1k05b31zmncz1ksaswc4r1k3vd2mmpigq1nk";
|
||||||
|
};
|
||||||
|
|
||||||
|
outputs = variants ++ [ "out" ]; # dummy "out" output to prevent breakage
|
||||||
|
|
||||||
|
outputsToInstall = [];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
inkscape
|
||||||
|
xcursorgen
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
patchShebangs ./build.sh
|
||||||
|
'';
|
||||||
|
|
||||||
|
# Make fontconfig stop warning about being unable to load config
|
||||||
|
FONTCONFIG_FILE = makeFontsConf { fontDirectories = [ ]; };
|
||||||
|
|
||||||
|
# Make inkscape stop warning about being unable to create profile directory
|
||||||
|
preBuild = ''
|
||||||
|
export HOME="$NIX_BUILD_ROOT"
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
|
for output in $outputs; do
|
||||||
|
if [ "$output" != "out" ]; then
|
||||||
|
local outputDir="''${!output}"
|
||||||
|
local iconsDir="$outputDir"/share/icons
|
||||||
|
|
||||||
|
mkdir -p "$iconsDir"
|
||||||
|
|
||||||
|
# Convert to kebab case with the first letter of each word capitalized
|
||||||
|
local variant=$(sed 's/\([A-Z]\)/-\1/g' <<< "$output")
|
||||||
|
local variant=''${variant^}
|
||||||
|
|
||||||
|
cp -r dist/Catppuccin-"$variant"-Cursors "$iconsDir"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# Needed to prevent breakage
|
||||||
|
mkdir -p "$out"
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Catppuccin cursor theme based on Volantes";
|
||||||
|
homepage = "https://github.com/catppuccin/cursors";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ PlayerNameHere ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -25096,6 +25096,8 @@ with pkgs;
|
||||||
|
|
||||||
cascadia-code = callPackage ../data/fonts/cascadia-code { };
|
cascadia-code = callPackage ../data/fonts/cascadia-code { };
|
||||||
|
|
||||||
|
catppuccin-cursors = callPackage ../data/icons/catppuccin-cursors { };
|
||||||
|
|
||||||
ccsymbols = callPackage ../data/fonts/ccsymbols { };
|
ccsymbols = callPackage ../data/fonts/ccsymbols { };
|
||||||
|
|
||||||
charis-sil = callPackage ../data/fonts/charis-sil { };
|
charis-sil = callPackage ../data/fonts/charis-sil { };
|
||||||
|
|
Loading…
Reference in a new issue