mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-07 11:29:59 +01:00
gnu: wolfssl: Use G-expressions.
gnu/packages/tls.scm (wolfssl): Use G-expressions. Change-Id: I56d995360b50a614a405c4377f0c7714c2522508
This commit is contained in:
parent
bf43a739dd
commit
2cb1b72a08
1 changed files with 7 additions and 7 deletions
|
@ -1187,19 +1187,19 @@ compatibility is also supported.")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/wolfSSL/wolfssl")
|
(url "https://github.com/wolfSSL/wolfssl")
|
||||||
(commit (string-append "v" version "-stable"))))
|
(commit (string-append "v" version "-stable"))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1q1sqwx6njsjbwmwr87ky0yrg2cin7ssa12gl14i8x1v35rpcxdb"))))
|
"1q1sqwx6njsjbwmwr87ky0yrg2cin7ssa12gl14i8x1v35rpcxdb"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags
|
(list #:configure-flags
|
||||||
'("--enable-distro"
|
#~(list "--enable-distro"
|
||||||
"--enable-pkcs11"
|
"--enable-pkcs11"
|
||||||
"--disable-examples"
|
"--disable-examples"
|
||||||
"--enable-jobserver=no")))
|
"--enable-jobserver=no")))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list autoconf automake libtool))
|
(list autoconf automake libtool))
|
||||||
(synopsis "SSL/TLS implementation")
|
(synopsis "SSL/TLS implementation")
|
||||||
|
|
Loading…
Add table
Reference in a new issue