diff options
author | Leo Famulari <[email protected]> | 2025-03-11 22:29:13 -0400 |
---|---|---|
committer | Leo Famulari <[email protected]> | 2025-03-11 22:29:27 -0400 |
commit | 361a1743df58477afa96617e60a28a64f44c42d3 (patch) | |
tree | 9b7c134ede08f93028b0093442c52214fc61e7f8 | |
parent | 252377d91c394912f16e9a151cdd609e5792d416 (diff) |
lint: tzdata and nss-certs should probably not be inputs at all.
* guix/lint.scm (check-inputs-should-not-be-an-input-at-all): Add tzdata and
nss-certs to the list of bad ideas.
Change-Id: I321d6989fc96013565d8be4480ee9928b7784245
-rw-r--r-- | guix/lint.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/guix/lint.scm b/guix/lint.scm index d54db725b5..e5e124a690 100644 --- a/guix/lint.scm +++ b/guix/lint.scm @@ -618,7 +618,9 @@ of a package, and INPUT-NAMES, a list of package specifications such as ;; Emit a warning if some inputs of PACKAGE are likely to should not be ;; an input at all. (let ((input-names '("python-pip" - "python-pre-commit"))) + "python-pre-commit" + "tzdata" + "nss-certs"))) (map (lambda (input) (make-warning package |