diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-07-03 17:33:51 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-07-03 17:33:51 +0200 |
commit | 13f5eb349438df9cc4f47f2dfca6532c6dc81c72 (patch) | |
tree | 700025b81180fbfb25216f27aab2102502b0503f /gnu | |
parent | c7d5cd6ca56241c5a17c2c917f6e03a26a03ee15 (diff) | |
download | patches-13f5eb349438df9cc4f47f2dfca6532c6dc81c72.tar patches-13f5eb349438df9cc4f47f2dfca6532c6dc81c72.tar.gz |
gnu: pigx-bsseq: Update to 0.0.10.
* gnu/packages/bioinformatics.scm (pigx-bsseq): Update to 0.0.10.
[arguments]: Remove "wrap-executable" phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index e8408b95a4..0619ea66b0 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -12968,7 +12968,7 @@ in an easily configurable manner.") (define-public pigx-bsseq (package (name "pigx-bsseq") - (version "0.0.9") + (version "0.0.10") (source (origin (method url-fetch) (uri (string-append "https://github.com/BIMSBbioinfo/pigx_bsseq/" @@ -12976,7 +12976,7 @@ in an easily configurable manner.") "/pigx_bsseq-" version ".tar.gz")) (sha256 (base32 - "0j1dfjk8m1p1h6d5yw63scjlbx56z8gixmbw626w1vcyblg0frmz")))) + "0l97wvkq4diq8lcarraj33bby1zzf0w804jwi8mlc5qddp8idwhy")))) (build-system gnu-build-system) (arguments `(#:phases @@ -12988,14 +12988,6 @@ in an easily configurable manner.") (setenv "TZDIR" (string-append (assoc-ref inputs "tzdata") "/share/zoneinfo")) - #t)) - (add-after 'install 'wrap-executable - ;; Make sure the executable finds all R modules. - (lambda* (#:key inputs outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (wrap-program (string-append out "/bin/pigx-bsseq") - `("R_LIBS_SITE" ":" = (,(getenv "R_LIBS_SITE"))) - `("PYTHONPATH" ":" = (,(getenv "PYTHONPATH"))))) #t))))) (native-inputs `(("tzdata" ,tzdata))) |