From c03626c2e34779d417fe4bb3968da73623b1b413 Mon Sep 17 00:00:00 2001 From: Dixon Sean Low Yan Feng Date: Tue, 25 Oct 2022 20:26:52 +0800 Subject: [PATCH] catppuccin-cursors: init at unstable-2022-08-23 --- maintainers/maintainer-list.nix | 9 +++ .../data/icons/catppuccin-cursors/default.nix | 81 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 92 insertions(+) create mode 100644 pkgs/data/icons/catppuccin-cursors/default.nix diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index b6192f78a8b..cc86a7aaa4c 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -10386,6 +10386,15 @@ 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 = { email = "mail@oddco.de"; github = "plchldr"; diff --git a/pkgs/data/icons/catppuccin-cursors/default.nix b/pkgs/data/icons/catppuccin-cursors/default.nix new file mode 100644 index 00000000000..d9eccc96a02 --- /dev/null +++ b/pkgs/data/icons/catppuccin-cursors/default.nix @@ -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 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0106424aa8e..2f2d27515b6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -25096,6 +25096,8 @@ with pkgs; cascadia-code = callPackage ../data/fonts/cascadia-code { }; + catppuccin-cursors = callPackage ../data/icons/catppuccin-cursors { }; + ccsymbols = callPackage ../data/fonts/ccsymbols { }; charis-sil = callPackage ../data/fonts/charis-sil { };