mirror of
https://github.com/NixOS/nix
synced 2025-06-27 04:21:16 +02:00
6 lines
141 B
Nix
6 lines
141 B
Nix
let
|
|
as = {
|
|
foo = "bar";
|
|
};
|
|
pos = builtins.unsafeGetAttrPos "foo" as;
|
|
in { inherit (pos) column line; file = baseNameOf pos.file; }
|