diff options
author | Arun Isaac | 2023-04-10 10:47:31 +0100 |
---|---|---|
committer | Arun Isaac | 2023-04-10 10:55:36 +0100 |
commit | 12c438b88468b2d507575af1f06dba4aa2d9e5eb (patch) | |
tree | eced1f2f1ef6cb6a1e9ed6ec1e7096533901f89d /gn/packages/bioinformatics.scm | |
parent | 71711dcda156f629ac600cc28b799e49b9da8fe8 (diff) | |
download | guix-bioinformatics-12c438b88468b2d507575af1f06dba4aa2d9e5eb.tar.gz |
vg: Use curl instead of curl-minimal.
curl-minimal has been removed from upstream Guix.
* gn/packages/bioinformatics.scm (vg)[inputs]: Use curl instead of
curl-minimal.
Diffstat (limited to 'gn/packages/bioinformatics.scm')
-rw-r--r-- | gn/packages/bioinformatics.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn/packages/bioinformatics.scm b/gn/packages/bioinformatics.scm index 0e6caf0..bb6b191 100644 --- a/gn/packages/bioinformatics.scm +++ b/gn/packages/bioinformatics.scm @@ -2187,7 +2187,7 @@ in-memory footprint at the cost of packing and unpacking.") (inputs `(("boost" ,boost) ("cairo" ,cairo) - ("curl" ,curl-minimal) + ("curl" ,curl) ("elfutils" ,elfutils) ("fastahack" ,fastahack) ("htslib" ,htslib) |