diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-11 06:08:00 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-11 06:08:43 +0100 |
commit | e7c6bc45ed440fd895b03b60878cb75ca8dea2f2 (patch) | |
tree | b90fbdb2260c90e0fea836a96b29e791683f5c1d | |
parent | 9757b57f4efd13b2fcf5277145231288770d46d0 (diff) | |
download | guix-e7c6bc45ed440fd895b03b60878cb75ca8dea2f2.tar guix-e7c6bc45ed440fd895b03b60878cb75ca8dea2f2.tar.gz |
gnu: jamm: Remove broken "build" phase.
* gnu/packages/bioinformatics.scm (jamm)[arguments]: Remove "build" phase.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 58ba2f05d6..433d322b08 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -14217,12 +14217,7 @@ absolute GSEA.") #:phases (modify-phases %standard-phases (delete 'configure) - (replace 'build - (lambda* (#:key inputs outputs #:allow-other-keys) - (substitute* "JAMM.sh" - (("^sPath=.*") - (string-append ""))) - #t)) + (delete 'build) (replace 'install (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) |