init: lib/flake

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"
This commit is contained in:
David Arnold
2021-04-28 14:21:27 -05:00
parent 460c08357f
commit 2cd41fb432
+5
View File
@@ -0,0 +1,5 @@
{
description = "Library of low-level helper functions for nix expressions.";
outputs = { self }: { lib = import ./lib; };
}