brewery
notashelf /
bfbcef9c284c54772e80b5a7f33efe9f9bcf75fa

nixir

public

Import-resolving Nix IR plugin

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/nixir.git
tests/integration/import_test.nixNix7 lines152 B
1
# Test that import builtin still works
2
let
3
  imported = import ./imported_module.nix;
4
in {
5
  value = imported.foo + 100;
6
  nested = imported.bar.baz;
7
}