Describe the bug
Package version inlay hints does not work without with pkgs;
Example
Works
{ pkgs, ... }:
{
key = with pkgs; [
hello
];
}
Broken
{ pkgs, ... }:
{
key = [
pkgs.hello
];
}
To Reproduce
- Works
{ pkgs, ... }:
{
key = with pkgs; [
hello
];
}
- Broken
{ pkgs, ... }:
{
key = [
pkgs.hello
];
}
Expected behavior
Working package version inlay hints even without with pkgs;
Additional context
Related
Describe the bug
Package version inlay hints does not work without
with pkgs;Example
Works
Broken
To Reproduce
Expected behavior
Working package version inlay hints even without
with pkgs;Additional context
Related
lib#643