1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2025-04-08 18:14:00 +00:00

Add comment to nixpkgs-lib dependency

This commit is contained in:
Robert Hensing 2023-05-31 14:11:00 +02:00
parent 57f4d12ba8
commit 904937e5f4

View file

@ -2,6 +2,15 @@
description = "Flake basics described using the module system";
inputs = {
# nix-community/nixpkgs.lib is equivalent to nixpkgs?dir=lib, except it is
# decoupled from its parent directory.
#
# You may use nixpkgs?dir=lib or even nixpkgs as an input instead, using follows.
# See https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-flake.html#flake-inputs
#
# Ideally fetching a subtree would be an builtins.fetchTree (aka flake inputs)
# feature, but that has not been implemented yet, and while take a while to
# be widely available.
nixpkgs-lib.url = "github:nix-community/nixpkgs.lib";
};