Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
732 B
Nix
33 lines
732 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "base16-schemes";
|
|
version = "0-unstable-2025-06-04";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tinted-theming";
|
|
repo = "schemes";
|
|
rev = "de3eeb6add0a6051bfc717684e36c8c9a78a1812";
|
|
hash = "sha256-C8VZuwzaQfNYbQQcc0Fh4RS+1nqc6j+IOy80NGmV4IQ=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share/themes/
|
|
install base16/*.yaml $out/share/themes/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "All the color schemes for use in base16 packages";
|
|
homepage = "https://github.com/tinted-theming/schemes";
|
|
maintainers = [ lib.maintainers.DamienCassou ];
|
|
license = lib.licenses.mit;
|
|
};
|
|
})
|