gnu: neko: Make sure not to keep a store reference to HTTPD.
* gnu/packages/haxe.scm (neko): Move httpd ... [native-inputs]: ... to here. [arguments]: Forbid keeping a reference to httpd.
This commit is contained in:
parent
3b5b668303
commit
15172a5c1e
1 changed files with 5 additions and 3 deletions
|
@ -66,7 +66,8 @@
|
||||||
(base32 "1xgw646pghsjjbzd8qlaq17vq96swlrazpivrvyrhdj36vb3sci3"))))
|
(base32 "1xgw646pghsjjbzd8qlaq17vq96swlrazpivrvyrhdj36vb3sci3"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:phases
|
(list #:disallowed-references (list httpd)
|
||||||
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'prefix
|
(add-after 'unpack 'prefix
|
||||||
(lambda _
|
(lambda _
|
||||||
|
@ -76,7 +77,6 @@
|
||||||
(inputs (list apr
|
(inputs (list apr
|
||||||
apr-util
|
apr-util
|
||||||
gtk+-2
|
gtk+-2
|
||||||
httpd
|
|
||||||
libgc
|
libgc
|
||||||
mbedtls-apache
|
mbedtls-apache
|
||||||
mysql
|
mysql
|
||||||
|
@ -84,7 +84,9 @@
|
||||||
pcre
|
pcre
|
||||||
sqlite
|
sqlite
|
||||||
zlib))
|
zlib))
|
||||||
(native-inputs (list git pkg-config)) ; git for source_archive and applying patch
|
(native-inputs (list httpd
|
||||||
|
git ; git for source_archive and applying patch
|
||||||
|
pkg-config))
|
||||||
(home-page "https://nekovm.org/")
|
(home-page "https://nekovm.org/")
|
||||||
(synopsis "High-level dynamically typed programming language and virtual
|
(synopsis "High-level dynamically typed programming language and virtual
|
||||||
machine")
|
machine")
|
||||||
|
|
Reference in a new issue