mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: conky: Remove redundant MKDIR-P.
* gnu/packages/conky.scm (conky)[arguments]: Remove redundant MKDIR-P.
This commit is contained in:
parent
9d13f82da8
commit
e6d30cf755
1 changed files with 2 additions and 2 deletions
|
@ -60,8 +60,8 @@ (define-public conky
|
|||
#t))
|
||||
(replace 'install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((bin (string-append (assoc-ref outputs "out") "/bin")))
|
||||
(mkdir-p bin)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(bin (string-append out "/bin")))
|
||||
(install-file "src/conky" bin))
|
||||
#t)))))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue