diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-02-13 22:41:16 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-02-13 23:09:23 +0100 |
commit | 4ef9ac7f27faa7373069194e18d8ffdb5040ddee (patch) | |
tree | eb39a9b96f6c37158e68bace7b9b48403fb62fc8 /gnu/packages | |
parent | 54b431b7b38c6148ee24b64e86bbbf1d57361584 (diff) | |
download | guix-4ef9ac7f27faa7373069194e18d8ffdb5040ddee.tar.gz guix-4ef9ac7f27faa7373069194e18d8ffdb5040ddee.zip |
gnu: fastp: Update to 0.23.2.
* gnu/packages/bioinformatics.scm (fastp): Update to 0.23.2.
[inputs]: Remove zlib; add isa-l and libdeflate.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 4e16b0d39a..73d555e454 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -5324,7 +5324,7 @@ The main functions of FastQC are: (define-public fastp (package (name "fastp") - (version "0.20.1") + (version "0.23.2") (source (origin (method git-fetch) @@ -5334,7 +5334,7 @@ The main functions of FastQC are: (file-name (git-file-name name version)) (sha256 (base32 - "0ly8mxdvrcy23jwxyppysx3dhb1lwsqhfbgpyvargxhfk6k700x4")))) + "04nmrqpjc3qni0cbazlwvpg8rk1mkfmfma0n4q3zivs3zi6rfnav")))) (build-system gnu-build-system) (arguments (list @@ -5348,7 +5348,7 @@ The main functions of FastQC are: (lambda _ (mkdir-p (string-append #$output "/bin"))))))) (inputs - (list zlib)) + (list isa-l libdeflate)) (home-page "https://github.com/OpenGene/fastp/") (synopsis "All-in-one FastQ preprocessor") (description |