gnu: mod-wsgi: Make sure not to keep a store reference to HTTPD.
* gnu/packages/web.scm (mod-wsgi)[inputs]: Move httpd ... [native-inputs]: ... to here. [arguments]: Forbid keeping a reference to httpd.
This commit is contained in:
parent
bdbf3e36cf
commit
3b3c7ef1f7
@ -335,14 +335,16 @@ and its related documentation.")
|
|||||||
"1savh6h3qds20mwn1nqasmqzcp57pdhfc9v4b4k78d6q28y0r17s"))))
|
"1savh6h3qds20mwn1nqasmqzcp57pdhfc9v4b4k78d6q28y0r17s"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ; TODO: can't figure out if there are tests
|
`(#:disallowed-references (,httpd)
|
||||||
|
#:tests? #f ; TODO: can't figure out if there are tests
|
||||||
#:make-flags (list
|
#:make-flags (list
|
||||||
(string-append "DESTDIR="
|
(string-append "DESTDIR="
|
||||||
(assoc-ref %outputs "out"))
|
(assoc-ref %outputs "out"))
|
||||||
"LIBEXECDIR=/modules")))
|
"LIBEXECDIR=/modules")))
|
||||||
|
(native-inputs
|
||||||
|
`(("httpd" ,httpd)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("httpd" ,httpd)
|
`(("python" ,python-wrapper)))
|
||||||
("python" ,python-wrapper)))
|
|
||||||
(synopsis "Apache HTTPD module for Python WSGI applications")
|
(synopsis "Apache HTTPD module for Python WSGI applications")
|
||||||
(description
|
(description
|
||||||
"The mod_wsgi module for the Apache HTTPD Server adds support for running
|
"The mod_wsgi module for the Apache HTTPD Server adds support for running
|
||||||
|
Loading…
Reference in New Issue
Block a user