diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2024-06-18 11:31:18 +0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:06 +0200 |
commit | f4cfa0218ffe3f62d27d402347f05b72ad8c93ae (patch) | |
tree | 86c89c1242a85726166bee8ec744ec503f9c991a | |
parent | 48be2390f666428112074994911162e6a53d99bf (diff) | |
download | guix-f4cfa0218ffe3f62d27d402347f05b72ad8c93ae.tar guix-f4cfa0218ffe3f62d27d402347f05b72ad8c93ae.tar.gz |
gnu: fdisk: Add libxcrypt dependency.
* gnu/packages/disk.scm (fdisk)[inputs]: Add libxcrypt.
Change-Id: I78d5a320ba3415193097801fca038fd6080af2ff
-rw-r--r-- | gnu/packages/disk.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm index e88452a2d1..7b78192fe9 100644 --- a/gnu/packages/disk.scm +++ b/gnu/packages/disk.scm @@ -325,6 +325,7 @@ tables. It includes a library and command-line utility.") (inputs `(("gettext" ,gettext-minimal) ("guile" ,guile-1.8) + ("libxcrypt" ,libxcrypt) ("util-linux" ,util-linux "lib") ("parted" ,parted))) ;; The build neglects to look for its own headers in its own tree. A next |