Fix import path.

Trying to create a simple flake with input:

```
{
inputs.nixpkgs-lib.url = "github:NixOS/nixpkgs?dir=lib";
outputs = {nixpkgs-lib, ...}: { };
}
```

Fails when trying to evaluate the nixpkgs-lib flake with an error like:

```
error: getting status of '/nix/store/xxxx-source/lib/lib': No such file or directory
(use '--show-trace' to show detailed location information)
```

authored by oeiuwq.com and committed by

GitHub 9a62c51f a55646b8

+1 -1
+1 -1
lib/flake.nix
··· 1 { 2 description = "Library of low-level helper functions for nix expressions."; 3 4 - outputs = { self }: { lib = import ./lib; }; 5 }
··· 1 { 2 description = "Library of low-level helper functions for nix expressions."; 3 4 + outputs = { self }: { lib = import ./.; }; 5 }