summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorDavid Arnold <dar@xoe.solutions>2021-04-20 12:58:50 -0500
committerDavid Arnold <dar@xoe.solutions>2021-04-28 14:21:27 -0500
commit2cd41fb4325765b87d7ce7a355b6ffd3b92e1772 (patch)
tree26079a28c574b9e15f4ecf68e8a8841b3fc77dcc /lib
parent460c08357f32b53504e6e8e515bbf4cc9e28e54a (diff)
downloadnixpkgs-2cd41fb4325765b87d7ce7a355b6ffd3b92e1772.tar
nixpkgs-2cd41fb4325765b87d7ce7a355b6ffd3b92e1772.tar.gz
nixpkgs-2cd41fb4325765b87d7ce7a355b6ffd3b92e1772.tar.bz2
nixpkgs-2cd41fb4325765b87d7ce7a355b6ffd3b92e1772.tar.lz
nixpkgs-2cd41fb4325765b87d7ce7a355b6ffd3b92e1772.tar.xz
nixpkgs-2cd41fb4325765b87d7ce7a355b6ffd3b92e1772.tar.zst
nixpkgs-2cd41fb4325765b87d7ce7a355b6ffd3b92e1772.zip
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"
Diffstat (limited to 'lib')
-rw-r--r--lib/flake.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/flake.nix b/lib/flake.nix
new file mode 100644
index 00000000000..f05bd40960a
--- /dev/null
+++ b/lib/flake.nix
@@ -0,0 +1,5 @@
+{
+  description = "Library of low-level helper functions for nix expressions.";
+
+  outputs = { self }: { lib = import ./lib; };
+}