diff options
author | R Veera Kumar <vkor@vkten.in> | 2020-04-17 22:21:01 +0530 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2020-04-20 20:05:09 +0200 |
commit | 9b3c231e3c144de11d670dff362be3afdd0f4d27 (patch) | |
tree | 90de978986a31c52584f72f04631e14b7a0d54e4 /gnu/packages/maths.scm | |
parent | e71c7f6abefdfef093ee655676f3b3a3e5d922f8 (diff) | |
download | guix-9b3c231e3c144de11d670dff362be3afdd0f4d27.tar guix-9b3c231e3c144de11d670dff362be3afdd0f4d27.tar.gz |
gnu: libqalculate: Fix libcurl gnutls CA cert bundle file.
* gnu/packages/patches/libqalculate-3.8.0-libcurl-ssl-fix.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/maths.scm (libqalculate)[source]: Use it.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
Diffstat (limited to 'gnu/packages/maths.scm')
-rw-r--r-- | gnu/packages/maths.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 9930f491a2..7db2b31012 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -5416,7 +5416,9 @@ researchers and developers alike to get started on SAT.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1vbaza9c7159xf2ym90l0xkyj2mp6c3hbghhsqn29yvz08fda9df")))) + (base32 "1vbaza9c7159xf2ym90l0xkyj2mp6c3hbghhsqn29yvz08fda9df")) + (patches + (search-patches "libqalculate-3.8.0-libcurl-ssl-fix.patch")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) |