diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-06-05 01:50:34 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-06-05 09:12:40 +0200 |
commit | bfa23ec526ac69b490848937c52a1560612d5905 (patch) | |
tree | 531833b3777eb541b02e96cc892e4cfcc1cad708 | |
parent | 764e2dba209b3283ebe35a22b49dc4771d42f181 (diff) | |
download | guix-bfa23ec526ac69b490848937c52a1560612d5905.tar.gz guix-bfa23ec526ac69b490848937c52a1560612d5905.zip |
gnu: r-cytoml: Update to 2.4.0.
* gnu/packages/bioconductor.scm (r-cytoml): Update to 2.4.0.
[arguments]: Remove.
-rw-r--r-- | gnu/packages/bioconductor.scm | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index b1ccf01485..13a1515516 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -9703,27 +9703,16 @@ sequential way to mimic the manual gating strategy.") (define-public r-cytoml (package (name "r-cytoml") - (version "2.2.2") + (version "2.4.0") (source (origin (method url-fetch) (uri (bioconductor-uri "CytoML" version)) (sha256 (base32 - "0ckjb7bkz0cy46scrv4vl9w37g54c0yihvzmbkzilip1ikpvhxd1")))) + "0ixy7mmnipk8wy61wz6qy7jfbc5zhs6p5iqaii8hdprjnb841ri7")))) (properties `((upstream-name . "CytoML"))) (build-system r-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'unpack 'fix-linking - (lambda _ - (substitute* "src/Makevars.in" - ;; This is to avoid having a plain directory on the list of - ;; libraries to link. - (("\\{h5lib\\}" match) - (string-append match "/libhdf5.a"))) - #t))))) (inputs `(("libxml2" ,libxml2) ("zlib" ,zlib))) |