dannym pushed a commit to branch master
in repository guix.
commit fff92439b292a6b4fcb22563a1b9fcec37c1a5ca
Author: Danny Milosavljevic <[email protected]>
Date: Thu May 10 02:38:20 2018 +0200
gnu: fastboot: Simplify package.
* gnu/packages/android.scm (fastboot)[arguments]<#:phases>
[make-googletest-available]: Delete phase.
[inputs]: Remove openssl.
---
gnu/packages/android.scm | 6 ------
1 file changed, 6 deletions(-)
diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm
index 88961ca..9a2a990 100644
--- a/gnu/packages/android.scm
+++ b/gnu/packages/android.scm
@@ -606,11 +606,6 @@ Android core.")
(lambda _
(chdir "core/fastboot")
#t))
- (add-after 'enter-source 'make-googletest-available
- (lambda* (#:key inputs #:allow-other-keys)
- (let ((googletest (assoc-ref inputs "googletest")))
- (symlink (string-append googletest "/lib/libgtest.so")
"libgtest_host.so")
- #t)))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
@@ -634,7 +629,6 @@ Android core.")
("android-libselinux" ,android-libselinux)
("pcre" ,pcre)
("mkbootimg" ,mkbootimg)
- ("openssl" ,openssl) ; FIXME remove
("zlib" ,zlib)))
(native-inputs
`(("core" ,(android-platform-system-core version))