diff options
author | Homo <gay@disroot.org> | 2025-06-18 14:54:40 +0300 |
---|---|---|
committer | Maxim Cournoyer <maxim@guixotic.coop> | 2025-07-10 23:19:37 +0900 |
commit | 5efefe21d103d9f60011b1003ac78d15937e295d (patch) | |
tree | 6042bf27c20fec331648e14456b1a160b4b68126 /gnu/packages/networking.scm | |
parent | 2a7ba05febe4b0da4f1142097b9bd64d26a83e01 (diff) |
gnu: Remove restinio-0.6.
* gnu/packages/networking.scm (restinio-0.6): Delete variable.
Change-Id: Ib889810f129ee276303222c1b35b3789bfa2cbde
Signed-off-by: Maxim Cournoyer <maxim@guixotic.coop>
Diffstat (limited to 'gnu/packages/networking.scm')
-rw-r--r-- | gnu/packages/networking.scm | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index f02545a56b..a8c866fbcc 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -3947,38 +3947,6 @@ HTTP/Websocket server. It is based on standalone version of ASIO and targeted primarily for asynchronous processing of HTTP-requests.") (license license:bsd-3))) -(define-public restinio-0.6 - (package - (inherit restinio) - (name "restinio") - (version "0.6.19") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Stiffstream/restinio") - (commit (string-append "v." version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1qrb1qr075r5059w984c4slgpsiwv94j6fmi9naa5l48dbi1p7jz")))) - (arguments - (list - #:configure-flags #~(list "-DRESTINIO_FIND_DEPS=ON" - "-DRESTINIO_INSTALL=ON" - "-DRESTINIO_TEST=ON" - "-DRESTINIO_USE_EXTERNAL_HTTP_PARSER=ON" - "-DRESTINIO_USE_EXTERNAL_SOBJECTIZER=ON") - #:phases - #~(modify-phases %standard-phases - (add-after 'unpack 'change-directory - (lambda _ - (chdir "dev")))))) - (native-inputs (list catch2 clara json-dto)) - ;; These are all #include'd by restinio's .hpp header files. - (propagated-inputs - (modify-inputs (package-propagated-inputs restinio) - (replace "llhttp" http-parser))))) - (define-public opendht (package (name "opendht") |