diff options
author | Pjotr Prins | 2022-12-17 15:54:26 +0000 |
---|---|---|
committer | Pjotr Prins | 2022-12-17 15:54:26 +0000 |
commit | eafcf26cd1d04501672c238663a64a4af8b173f0 (patch) | |
tree | 869057fbd6c729eee6327c18e81cbf189e8a3ed0 | |
parent | 02ffd08f9d98ae5ec4b430af34c362034a74c02c (diff) | |
download | guix-bioinformatics-eafcf26cd1d04501672c238663a64a4af8b173f0.tar.gz |
PHP5 and GN1
-rw-r--r-- | gn/packages/genenetwork.scm | 3 | ||||
-rw-r--r-- | gn/packages/php.scm | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gn/packages/genenetwork.scm b/gn/packages/genenetwork.scm index b7e71d2..830b165 100644 --- a/gn/packages/genenetwork.scm +++ b/gn/packages/genenetwork.scm @@ -711,7 +711,8 @@ written in C") `(("ghostscript" ,ghostscript) ("graphviz" ,graphviz) ("php-5.6" ,php-5.6) - ("wget" ,wget))) + ("wget" ,wget) + ("which" ,which))) (propagated-inputs `(("python" ,python-2.4) ("httpd-with-mod-python" ,httpd22-with-mod-python) diff --git a/gn/packages/php.scm b/gn/packages/php.scm index 47e473d..24fe6a5 100644 --- a/gn/packages/php.scm +++ b/gn/packages/php.scm @@ -24,7 +24,9 @@ (base32 "073dcpiaq89b0nv9a5andlkhwxhpr5f2wd65s7xxg59rxqgaas8k")))) (arguments - `(#:configure-flags + `( + #:tests? #f + #:configure-flags (let-syntax ((with (syntax-rules () ((_ option input) (string-append option "=" |