Merge pull request #328730 from philipwilk/catppuccin-kakoune

kakounePlugins.kakoune-catppuccin: init at 2024-03-29
This commit is contained in:
Philip Taron 2024-08-15 05:55:53 -07:00 committed by GitHub
commit 0422fbcf36
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 24 additions and 0 deletions

View File

@ -15997,6 +15997,12 @@
githubId = 43863;
name = "Philip Taron";
};
philipwilk = {
name = "Philip Wilk";
email = "p.wilk@student.reading.ac.uk";
github = "philipwilk";
githubId = 50517631;
};
philtaken = {
email = "philipp.herzog@protonmail.com";
github = "philtaken";

View File

@ -194,4 +194,22 @@ declare-option -hidden str ansi_filter %{'"$out"'/bin/kak-ansi-filter}
platforms = platforms.all;
};
};
kakoune-catppuccin = buildKakounePluginFrom2Nix {
pname = "kakoune-catppuccin";
version = "0-unstable-2024-03-29";
src = fetchFromGitHub {
owner = "catppuccin";
repo = "kakoune";
rev = "7f187d9da2867a7fda568b2135d29b9c00cfbb94";
hash = "sha256-acBOQuJ8MgsMKdvFV5B2CxuxvXIYsg11n1mHEGqd120=";
};
meta = with lib; {
description = "Soothing pastel theme for Kakoune";
homepage = "https://github.com/catppuccin/kakoune/";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ philipwilk ];
};
};
}