summary refs log tree commit diff
path: root/lib/flake.nix
Commit message (Collapse)AuthorAge
* Fix import path.Victor Borja2021-08-14
| | | | | | | | | | | | | | | | | 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) ```
* init: lib/flakeDavid Arnold2021-04-28
A subflake that can be indidividually accessed without also providing an interface to the whole of nixpkgs. Usage: inputs.nixpkgs-lib.url = "github:NixOS/nixpkgs?dir=lib"