diff options
| -rw-r--r-- | gnu/packages/vim.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index da9f11612c8..1badc69c800 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm @@ -215,9 +215,8 @@ configuration files.") (lambda _ (chdir "src/xxd"))) (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) - (install-file "xxd" bin))))))) + (lambda _ + (install-file "xxd" (string-append #$output "/bin"))))))) (inputs `()) (native-inputs `()) (synopsis "Hexdump utility from vim") |
