1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-30 14:01:15 +02:00

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:
Leo Famulari
2023-04-27 22:50:25 -04:00
parent 3b5b668303
commit 15172a5c1e

View File

@@ -66,7 +66,8 @@
(base32 "1xgw646pghsjjbzd8qlaq17vq96swlrazpivrvyrhdj36vb3sci3"))))
(build-system cmake-build-system)
(arguments
(list #:phases
(list #:disallowed-references (list httpd)
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'prefix
(lambda _
@@ -76,7 +77,6 @@
(inputs (list apr
apr-util
gtk+-2
httpd
libgc
mbedtls-apache
mysql
@@ -84,7 +84,9 @@
pcre
sqlite
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/")
(synopsis "High-level dynamically typed programming language and virtual
machine")