mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: mbedtls-apache: Use gexps.
* gnu/packages/tls.scm (mbedtls-apache)[arguments]: Use gexps. Change-Id: Idefca03b8eea0d3f18497afccc4a3a081caac87e
This commit is contained in:
parent
585d71ce96
commit
0f86c1c6f8
1 changed files with 8 additions and 8 deletions
|
@ -988,14 +988,14 @@ (define-public mbedtls-apache
|
|||
(base32 "070i5pxciw04swfqk1rmdprhsafn4cias3dlmkm467pqpjnhb394"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
(list "-DUSE_SHARED_MBEDTLS_LIBRARY=ON"
|
||||
"-DUSE_STATIC_MBEDTLS_LIBRARY=OFF")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'make-source-writable
|
||||
(lambda _
|
||||
(for-each make-file-writable (find-files ".")))))))
|
||||
(list #:configure-flags
|
||||
#~(list "-DUSE_SHARED_MBEDTLS_LIBRARY=ON"
|
||||
"-DUSE_STATIC_MBEDTLS_LIBRARY=OFF")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'make-source-writable
|
||||
(lambda _
|
||||
(for-each make-file-writable (find-files ".")))))))
|
||||
(native-inputs
|
||||
(list perl python))
|
||||
(synopsis "Small TLS library")
|
||||
|
|
Loading…
Reference in a new issue