Commit message (Collapse) | Author | ||
---|---|---|---|
2025-02-01 | fix(by-name-overlay): Correctly display the `rawPath` in warnings prime | Benedikt Peetz | |
Without the `builtins.toString` nix will just copy the path to the store and return that. With the `builtins.toString` it actually prints the real path. | |||
2025-01-29 | fix(by-name-overlay): Actually return paths | Benedikt Peetz | |
The previous version regressed and returned strings with context (which would then end up in the nix store). | |||
2025-01-29 | test(shards_relative): Init | Benedikt Peetz | |
2025-01-29 | feat(by-name-overlay): Provide a toggle to return relative paths | Benedikt Peetz | |
2025-01-29 | fix(by-name-overlay): Return absolute paths again | Benedikt Peetz | |
This was a regression. | |||
2025-01-29 | test(shards_finalize): Init | Benedikt Peetz | |
2025-01-29 | fix(by-name-overlay): Apply the `finalizeFunction` to the correct attr set | Benedikt Peetz | |
2025-01-29 | fix(by-name-overlay): Correctly work with `useShards = true` | Benedikt Peetz | |
2025-01-29 | test(tests): Also include a test for `useShards = true` | Benedikt Peetz | |
2025-01-29 | test(tests): Init | Benedikt Peetz | |
2025-01-29 | feat(by-name-overlay): Support looking for files defined by a regex | Benedikt Peetz | |
Coincidently, this change also reduces the runtime on `useShards = false` from O(n^2) to O(n) because duplicated look-ups have been removed. | |||
2025-01-29 | fix(by-name-overlay)!: Remove the `coImportFunction` feature | Benedikt Peetz | |