diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2024-06-19 15:34:22 +0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:18 +0200 |
commit | b25c1e7d03ab39f28669a8be2d7e014c4a15ab9f (patch) | |
tree | f8a6d925d7bc6716db2b118f7d60cc3a507001da | |
parent | 2e89e9f20abfeb8744bc3a0282a3164e379fe058 (diff) | |
download | guix-b25c1e7d03ab39f28669a8be2d7e014c4a15ab9f.tar.gz guix-b25c1e7d03ab39f28669a8be2d7e014c4a15ab9f.zip |
gnu: libnl-python2: Add libxcrypt dependency.
* gnu/packages/linux.scm (libnl-python-package)[inputs]: Add libxcrypt.
Change-Id: Id7293e6f1951bb525f5ad072bc7b12d18ac7c69c
-rw-r--r-- | gnu/packages/linux.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 4492d8963a..f0b8832da2 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3630,7 +3630,8 @@ configuration and monitoring interfaces.") ((string=? python "python2") `(("python-2" ,python-2))) ((string=? python "python3") - `(("python-3" ,python-3)))))) + `(("python-3" ,python-3)))) + ("libxcrypt" ,libxcrypt))) ;required by Python.h (propagated-inputs (list libnl)) (outputs '("out")) (arguments |