add base24
All checks were successful
checks / checks (push) Successful in 13s

This commit is contained in:
2025-08-25 12:43:54 +04:00
parent e7d58bb03a
commit 1ef47a00bd

View File

@@ -0,0 +1,32 @@
{
lib,
stdenv,
fetchFromGitHub,
...
}:
stdenv.mkDerivation (finalAttrs: {
pname = "base24-schemes";
version = "unstable-2025-04-18";
src = fetchFromGitHub {
owner = "tinted-theming";
repo = "schemes";
rev = "28c26a621123ad4ebd5bbfb34ab39421c0144bdd";
hash = "sha256-Fg+rdGs5FAgfkYNCs74lnl8vkQmiZVdBsziyPhVqrlY=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/share/themes/
install base24/*.yaml $out/share/themes/
runHook postInstall
'';
meta = with lib; {
description = "All the color schemes for use in base24 packages";
homepage = finalAttrs.src.meta.homepage;
license = licenses.mit;
};
})