Skip to content

Package Version Inlay Hints Does Not Work Without with pkgs; #835

Description

@Malix-Labs

Describe the bug

Package version inlay hints does not work without with pkgs;

Example

Works
{ pkgs, ... }:
{
  key = with pkgs; [
    hello
  ];
}
Image
Broken
{ pkgs, ... }:
{
  key = [
    pkgs.hello
  ];
}
Image

To Reproduce

  1. Works
    { pkgs, ... }:
    {
      key = with pkgs; [
        hello
      ];
    }
  2. Broken
    { pkgs, ... }:
    {
      key = [
        pkgs.hello
      ];
    }

Expected behavior

Working package version inlay hints even without with pkgs;

Additional context

Related

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions