summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2021-05-24 02:06:19 -0300
committerGitHub <noreply@github.com>2021-05-24 02:06:19 -0300
commit41d76a33ebc4275b83fafd130c61881833ca3f43 (patch)
treeca42f4bb6d9191b2cfeb690333afe2286a995274 /lib
parentd46a6a8d28269c7fbf42386d9af4e99eff4605a8 (diff)
parent2cd41fb4325765b87d7ce7a355b6ffd3b92e1772 (diff)
downloadnixpkgs-41d76a33ebc4275b83fafd130c61881833ca3f43.tar
nixpkgs-41d76a33ebc4275b83fafd130c61881833ca3f43.tar.gz
nixpkgs-41d76a33ebc4275b83fafd130c61881833ca3f43.tar.bz2
nixpkgs-41d76a33ebc4275b83fafd130c61881833ca3f43.tar.lz
nixpkgs-41d76a33ebc4275b83fafd130c61881833ca3f43.tar.xz
nixpkgs-41d76a33ebc4275b83fafd130c61881833ca3f43.tar.zst
nixpkgs-41d76a33ebc4275b83fafd130c61881833ca3f43.zip
Merge pull request #119967 from xoe-labs/da/add-lib-flake
init: lib/flake
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; };
+}