diff options
author | Petr Hodina <phodina@protonmail.com> | 2022-12-03 10:32:43 +0100 |
---|---|---|
committer | Oleg Pykhalov <go.wigust@gmail.com> | 2024-01-21 16:00:48 +0300 |
commit | cbb4d8cb27b3d0b2cdd5919670b13a84f04468f5 (patch) | |
tree | 74545a478cd289f1bcd653958d420c543a4bf469 /gnu/packages | |
parent | 646c1c093ffea32b30edc2e5402bea215e59b75f (diff) | |
download | guix-cbb4d8cb27b3d0b2cdd5919670b13a84f04468f5.tar.gz guix-cbb4d8cb27b3d0b2cdd5919670b13a84f04468f5.zip |
gnu: Add enet-moonlight.
* gnu/packages/networking.scm (enet-moonlight): New variable.
Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/networking.scm | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 64e32f78f2..fb0de2da22 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -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") |