gnu: go-github-com-sevlyar-go-daemon: Move to golang-xyz.

* gnu/packages/golang.scm (go-github-com-sevlyar-go-daemon): Move from
here ...
* gnu/packages/golang-xyz.scm: ... to here.
* gnu/packages/vpn.scm: Add to used golang-xyz module.

Change-Id: I0c1084983440bb45b6621cd0b2d7ba8d30ee8ff7
This commit is contained in:
Sharlatan Hellseher 2024-09-22 21:01:08 +01:00
parent 7ff9ab32be
commit d83434fc5b
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
3 changed files with 28 additions and 25 deletions

View file

@ -18,6 +18,7 @@
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net> ;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
;;; Copyright © 2021 Guix Together <jgart@dismail.de> ;;; Copyright © 2021 Guix Together <jgart@dismail.de>
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name> ;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
;;; Copyright © 2021 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
;;; Copyright © 2021 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2021 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev> ;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
;;; Copyright © 2021 raingloom <raingloom@riseup.net> ;;; Copyright © 2021 raingloom <raingloom@riseup.net>
@ -43,8 +44,8 @@
;;; Copyright © 2024 Jean Simard <woshilapin@tuziwo.info> ;;; Copyright © 2024 Jean Simard <woshilapin@tuziwo.info>
;;; Copyright © 2024 Jesse Eisses <jesse@eisses.email> ;;; Copyright © 2024 Jesse Eisses <jesse@eisses.email>
;;; Copyright © 2024 Luis Higino <luishenriquegh2701@gmail.com> ;;; Copyright © 2024 Luis Higino <luishenriquegh2701@gmail.com>
;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
;;; Copyright © 2024 Spencer Peters <spencerpeters@protonmail.com> ;;; Copyright © 2024 Spencer Peters <spencerpeters@protonmail.com>
;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
;;; Copyright © 2024 gemmaro <gemmaro.dev@gmail.com> ;;; Copyright © 2024 gemmaro <gemmaro.dev@gmail.com>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
@ -6524,6 +6525,31 @@ (define-public go-github-com-sergi-go-diff
@end itemize") @end itemize")
(license license:expat))) (license license:expat)))
(define-public go-github-com-sevlyar-go-daemon
(package
(name "go-github-com-sevlyar-go-daemon")
(version "0.1.6")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/sevlyar/go-daemon")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1x2sn871g10jihga6jvng7ys1988dgj24wlkxzdzca6mvzysj80b"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/sevlyar/go-daemon"))
(propagated-inputs
(list go-golang-org-x-sys))
(home-page "https://github.com/sevlyar/go-daemon")
(synopsis "Library for writing system daemons")
(description
"Go-Daemon is a library for writing system daemons in Go.")
(license license:expat)))
(define-public go-github-com-shirou-gopsutil (define-public go-github-com-shirou-gopsutil
(package (package
(name "go-github-com-shirou-gopsutil") (name "go-github-com-shirou-gopsutil")

View file

@ -2249,30 +2249,6 @@ (define-public go-gitlab-torproject-org-tpo-anti-censorship-pluggable-transports
web browsing activities based on HTTP Upgrade (HTTPT).") web browsing activities based on HTTP Upgrade (HTTPT).")
(license license:bsd-2)))) (license license:bsd-2))))
(define-public go-github-com-sevlyar-go-daemon
(package
(name "go-github-com-sevlyar-go-daemon")
(version "0.1.6")
(source
(origin
(method git-fetch)
(uri
(git-reference
(url "https://github.com/sevlyar/go-daemon")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1x2sn871g10jihga6jvng7ys1988dgj24wlkxzdzca6mvzysj80b"))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/sevlyar/go-daemon"))
(propagated-inputs
(list go-golang-org-x-sys))
(home-page "https://github.com/sevlyar/go-daemon")
(synopsis "Library for writing system daemons")
(description "Go-Daemon is a library for writing system daemons in Go.")
(license license:expat)))
(define-public go-github-com-keybase-go-ps (define-public go-github-com-keybase-go-ps
(let ((commit "91aafc93ba19d1988cff338c1929d35b6c6f5b50") (let ((commit "91aafc93ba19d1988cff338c1929d35b6c6f5b50")
(revision "0")) (revision "0"))

View file

@ -74,6 +74,7 @@ (define-module (gnu packages vpn)
#:use-module (gnu packages gnupg) #:use-module (gnu packages gnupg)
#:use-module (gnu packages golang) #:use-module (gnu packages golang)
#:use-module (gnu packages golang-build) #:use-module (gnu packages golang-build)
#:use-module (gnu packages golang-xyz)
#:use-module (gnu packages guile) #:use-module (gnu packages guile)
#:use-module (gnu packages libevent) #:use-module (gnu packages libevent)
#:use-module (gnu packages linux) #:use-module (gnu packages linux)