me
/
guix
Archived
1
0
Fork 0

gnu: password-store: Use INSTALL-FILE.

* gnu/packages/password-utils.scm (password-store)[arguments]:
Substitute a more concise INSTALL-FILE invocation for COPY-FILE.
master
Tobias Geerinckx-Rice 2018-08-10 02:36:51 +02:00
parent 7fcb3935fa
commit e9ce64250a
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 3 additions and 3 deletions

View File

@ -386,9 +386,9 @@ any X11 window.")
#t)) #t))
(add-after 'install 'install-passmenu (add-after 'install 'install-passmenu
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out"))) (let* ((out (assoc-ref outputs "out"))
(copy-file "contrib/dmenu/passmenu" (bin (string-append out "/bin")))
(string-append out "/bin/passmenu")) (install-file "contrib/dmenu/passmenu" bin)
#t))) #t)))
(add-after 'install 'wrap-path (add-after 'install 'wrap-path
(lambda* (#:key inputs outputs #:allow-other-keys) (lambda* (#:key inputs outputs #:allow-other-keys)