Commit fd30b375 authored by Sergei Trofimovich's avatar Sergei Trofimovich
Browse files

vte.tests: fix the eval

Without the change the eval fails on `master` as:

    $ nix build --no-link -f. vte.tests
    error:
       … while evaluating the attribute 'blackbox-terminal'
         at pkgs/by-name/vt/vte/package.nix:174:7:
          173|         ;
          174|       blackbox-terminal = blackbox-terminal.override { sixelSupport = true; };
             |       ^
          175|     };

       … while calling a functor (an attribute set with a '__functor' attribute)
         at pkgs/by-name/vt/vte/package.nix:174:27:
          173|         ;
          174|       blackbox-terminal = blackbox-terminal.override { sixelSupport = true; };
             |                           ^
          175|     };

       (stack trace truncated; use '--show-trace' to show the full, detailed trace)

       error: function 'anonymous lambda' called with unexpected argument 'sixelSupport'
       at pkgs/by-name/bl/blackbox-terminal/package.nix:1:1:
            1| {
             | ^
            2|   lib,
parent 6ab7e3d7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -171,7 +171,7 @@ stdenv.mkDerivation (finalAttrs: {
        termite
        xfce4-terminal
        ;
      blackbox-terminal = blackbox-terminal.override { sixelSupport = true; };
      inherit blackbox-terminal;
    };
  };