gnu: Add enet-moonlight.

* gnu/packages/networking.scm (enet-moonlight): New variable.

Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
This commit is contained in:
Petr Hodina 2022-12-03 10:32:43 +01:00 committed by Oleg Pykhalov
parent 646c1c093f
commit cbb4d8cb27
No known key found for this signature in database
GPG Key ID: 167F8EA5001AFA9C

View File

@ -2624,6 +2624,45 @@ library remains flexible, portable, and easily embeddable.")
(home-page "http://enet.bespin.org")
(license license:expat)))
(define-public enet-moonlight
(let ((commit "4cde9cc3dcc5c30775a80da1de87f39f98672a31")
(revision "1"))
(package
(inherit enet)
(name "enet")
(version (git-version "1.3.17" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/cgutman/enet")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"07sr32jy989ja23fwg8bvrq2slgm7bhfw6v3xq7yczbw86c1dndv"))))
(build-system cmake-build-system)
(arguments
(list #:tests? #f ;no test suite
#:phases #~(modify-phases %standard-phases
(add-after 'unpack 'build-share-lib
(lambda* _
;; -DBUILD_SHARED_LIBS=ON not working
(substitute* "CMakeLists.txt"
(("STATIC")
"SHARED"))))
(replace 'install
(lambda* (#:key outputs source #:allow-other-keys)
(let* ((include (string-append #$output
"/include"))
(lib (string-append #$output "/lib")))
(mkdir-p include)
(mkdir-p lib)
(copy-recursively (string-append source
"/include")
include)
(install-file "libenet.so" lib)))))))
(native-inputs (list pkg-config)))))
(define-public sslh
(package
(name "sslh")