diff options
author | Sharlatan Hellseher <[email protected]> | 2025-01-08 21:06:10 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:47:46 +0000 |
commit | a74fd39667299d63a4d82b1d9daea4926a6ca1c7 (patch) | |
tree | 47cbb9ae9fbf4309425c6b84e12be57e839b2436 /gnu/packages/golang-web.scm | |
parent | 1c387040e1e91052f8e8137049dc81b73660df95 (diff) |
gnu: Add go-github-com-kortschak-wol.
* gnu/packages/golang-web.scm (go-github-com-kortschak-wol): New variable.
Change-Id: If9f2153d1fb4b42479e7bbf8b1ce2677300abcd1
Diffstat (limited to 'gnu/packages/golang-web.scm')
-rw-r--r-- | gnu/packages/golang-web.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 45f3c44d4a..b50c74df2d 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -4260,6 +4260,29 @@ protocol in Go language.") @acronym{Simple Service Discovery Protocol, SSDP}} library for Golang.") (license license:expat))) +(define-public go-github-com-kortschak-wol + (package + (name "go-github-com-kortschak-wol") + (version "0.0.0-20200729010619-da482cc4850a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kortschak/wol") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "16qyy1c1q5cxcnwdzl69v49pjmyxha4i88fsg0g83gwdyapzsyln")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/kortschak/wol")) + (home-page "https://github.com/kortschak/wol") + (synopsis "Wake On LAN client") + (description + "Package wol provides a Wake On LAN function.") + (license license:bsd-3))) + (define-public go-github-com-labbsr0x-goh (package (name "go-github-com-labbsr0x-goh") |