{ lib , fetchFromGitHub , unstableGitUpdater , stdenvNoCC , ... }: stdenvNoCC.mkDerivation (self: { pname = "alacritty-theme"; version = "0-unstable-2024-09-03"; src = fetchFromGitHub { owner = "alacritty"; repo = "alacritty-theme"; rev = "e759dafb8e2e00abb428592979ce006da7fba4a7"; hash = "sha256-cZ+ziE+VbQFpJ+iDS7X9Q2YC1Ziu+JITzDmX79BCcRY="; }; dontConfigure = true; dontBuild = true; preferLocalBuild = true; sourceRoot = "${self.src.name}/themes"; installPhase = '' runHook preInstall install -Dt $out *.toml runHook postInstall ''; passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; meta = with lib; { description = "Collection of Alacritty color schemes"; homepage = "https://alacritty.org/"; license = licenses.asl20; maintainers = [ maintainers.nicoo ]; platforms = platforms.all; }; })