gnu: git-crypt: Return #t from all phases.

* gnu/packages/version-control.scm (git-crypt)[arguments]: Substitute
INVOKE for SYSTEM*.
master
Tobias Geerinckx-Rice 2018-06-22 18:02:16 +02:00
parent d6870d107e
commit 56d63f8119
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 3 additions and 3 deletions

View File

@ -466,12 +466,12 @@ write native speed custom Git applications in any language with bindings.")
(delete 'configure) (delete 'configure)
(replace 'build (replace 'build
(lambda _ (lambda _
(zero? (system* "make")))) (invoke "make")))
(replace 'install (replace 'install
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out"))) (let ((out (assoc-ref outputs "out")))
(zero? (system* "make" "install" (invoke "make" "install"
(string-append "PREFIX=" out))))))))) (string-append "PREFIX=" out))))))))
(home-page "https://www.agwa.name/projects/git-crypt") (home-page "https://www.agwa.name/projects/git-crypt")
(synopsis "Transparent encryption of files in a git repository") (synopsis "Transparent encryption of files in a git repository")
(description "git-crypt enables transparent encryption and decryption of (description "git-crypt enables transparent encryption and decryption of