Merge pull request #279354 from trofi/alacritty-theme-fix

alacritty-theme: fix install by packaging `*.toml` files
This commit is contained in:
Nick Cao 2024-01-07 10:58:24 -05:00 committed by GitHub
commit 407c7dcf82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ stdenvNoCC.mkDerivation (self: {
sourceRoot = "${self.src.name}/themes";
installPhase = ''
runHook preInstall
install -Dt $out *.yaml
install -Dt $out *.toml
runHook postInstall
'';