gnu: Remove boinc-server.

boinc-server is not supposed to be installed this (or any other) packaged way.
Also, it uses a completely different versioning scheme.

* gnu/packages/distributed.scm (boinc-server): Delete variable.

Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
Change-Id: I85c7176424c7db65eb5233bfefab01c62a0d757c
This commit is contained in:
Vitalii Koshura 2024-09-13 19:30:52 +02:00 committed by Zheng Junjie
parent af67cce902
commit 9d6f10e875
No known key found for this signature in database
GPG key ID: 3B5AA993E1A2DFF0

View file

@ -83,17 +83,3 @@ resources). It supports virtualized, parallel, and GPU-based applications.")
(home-page "https://boinc.berkeley.edu/")
;; BOINC is distributed as LGPL3+, with some individual modules under GPL3+.
(license (list license:lgpl3+ license:gpl3+))))
(define-public boinc-server
;; XXX The server and client packages duplicate many files such as /lib.
;; TODO: consolidate them?
(package (inherit boinc-client)
(name "boinc-server")
(arguments
(list
#:configure-flags
#~(list "--disable-client"
"--disable-manager")
#:parallel-build? #f))
(inputs (list curl `(,mariadb "dev") openssl zlib))
(propagated-inputs (list perl python-wrapper))))