about summary refs log tree commit diff
path: root/pkgs/by-name/kx
diff options
context:
space:
mode:
authorDan Callahan <dan.callahan@gmail.com>2024-04-10 16:15:24 +0100
committerDan Callahan <dan.callahan@gmail.com>2024-04-10 16:15:24 +0100
commitec6c59494497d5679ed1d1d4086abacd89de8ef4 (patch)
tree06f5979653fc3db6106f7f6c4df5088a4f3d7d60 /pkgs/by-name/kx
parent6347cd23dcc2b020dd4ea5bfe5871be35e95ae63 (diff)
stdenv/check-meta: Fix error message for disallowed unfree packages
Nixpkgs tries to print a helpful message when it blocks unfree packages,
but the suggestion is subtly broken. The predicate only matches on the
package's name, but the suggestion includes the full name-version pair.

Fixed by formatting the message with the same function as the predicate.

This issue arises because check-meta defines its own local getName with
semantics divergent from lib.getName. The former includes the version,
the latter does not.

Example Before:

    Alternatively you can configure a predicate to allow specific packages:
      { nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
          "obsidian-1.5.12"
        ];
      }

Example After:

    Alternatively you can configure a predicate to allow specific packages:
      { nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
          "obsidian"
        ];
      }

Fixes #303116
Diffstat (limited to 'pkgs/by-name/kx')
0 files changed, 0 insertions, 0 deletions