about summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2024-01-07 11:54:03 +0000
committerSergei Trofimovich <slyich@gmail.com>2024-01-07 11:54:03 +0000
commitb294316d50d0802096c750fa2306febb35b7afd5 (patch)
treee73f6e7ba46a61fd46904f282feaabdecf51cea9 /pkgs/data
parent24fe8bb4f552ad3926274d29e083b79d84707da6 (diff)
alacritty-theme: fix install by packaging `*.toml` files
Without the change `alacritty-tmeme` fails the build in `master` as:

    $ nix build --no-link -f. -L alacritty-theme
    Running phase: unpackPhase
    unpacking source archive /nix/store/fspc2v4jrpfx30avp5aagfigq0vhy8pz-source
    source root is source/themes
    Running phase: patchPhase
    Running phase: updateAutotoolsGnuConfigScriptsPhase
    Running phase: installPhase
    install: missing file operand
    Try 'install --help' for more information.
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/themes/alacritty-theme/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/data/themes/alacritty-theme/default.nix b/pkgs/data/themes/alacritty-theme/default.nix
index ea5a426f624a1..a60f42107ce43 100644
--- a/pkgs/data/themes/alacritty-theme/default.nix
+++ b/pkgs/data/themes/alacritty-theme/default.nix
@@ -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
   '';