diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-12-29 16:19:56 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-12-29 18:24:54 +0100 |
commit | 8a705ae4c6107f43c7fbcfad913dd2675f94086a (patch) | |
tree | fde7775864a4c4ac8aee5e8830d127793320568f /guix/scripts | |
parent | 1e30d4e0df75567b869c0c69e8c0a93f712a56a0 (diff) |
profiles: Add 'map-manifest-entries'.
* guix/scripts/pack.scm (map-manifest-entries): Move to...
* guix/profiles.scm (map-manifest-entries): ... here.
Diffstat (limited to 'guix/scripts')
-rw-r--r-- | guix/scripts/pack.scm | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/guix/scripts/pack.scm b/guix/scripts/pack.scm index 9676d28565..536cc1726c 100644 --- a/guix/scripts/pack.scm +++ b/guix/scripts/pack.scm @@ -753,11 +753,6 @@ last resort for relocation." (manifest-entry-output entry) args)))) -(define (map-manifest-entries proc manifest) - "Apply PROC to all the entries of MANIFEST and return a new manifest." - (make-manifest - (map proc (manifest-entries manifest)))) - ;;; ;;; Command-line options. |