mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
9a62c51fdf
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) ```
6 lines
128 B
Nix
6 lines
128 B
Nix
{
|
|
description = "Library of low-level helper functions for nix expressions.";
|
|
|
|
outputs = { self }: { lib = import ./.; };
|
|
}
|