Only depend on nixpkgs/lib.

This reflects the actual requirements of the core flake-parts
functionality and removes any possible confusion about where lib comes
from (always flake-parts's input) vs where pkgs comes from (always the
flake's nixpkgs input). Flakes which use flake-parts should only ever
have to override its input in the very unlikely event of a bug in lib.

Hopefully lib will be separated into its own flake some day, which
will also make this a much smaller footprint.
This commit is contained in:
Shea Levy 2022-10-11 13:42:23 -04:00
parent 45298bd207
commit 13dddfdc67
No known key found for this signature in database
GPG key ID: 5C0BD6957D86FE27
5 changed files with 10 additions and 11 deletions

View file

@ -2,7 +2,6 @@
description = "Description for the project";
inputs = {
flake-parts.inputs.nixpkgs.follows = "nixpkgs";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};