gnu: Add go-github-com-kardianos-service.

* gnu/packages/golang-xyz.scm (go-github-com-kardianos-service): New variable.

Change-Id: Id6bfb66d9b55840661c16b72280310a85cde3036
This commit is contained in:
Sharlatan Hellseher 2024-12-22 21:16:53 +00:00
parent 8c67fd738a
commit 289094d60d
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -6237,6 +6237,31 @@ ansi.")
customized globally.")
(license license:expat)))
(define-public go-github-com-kardianos-service
(package
(name "go-github-com-kardianos-service")
(version "1.2.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/kardianos/service")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1wcrc632nf2l5gzwgjfpx7bh6v4la0qjmaykj58fysabb9fkk9dy"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/kardianos/service"
#:test-flags #~(list "-skip" "TestPlatformName")))
(propagated-inputs (list go-golang-org-x-sys))
(home-page "https://github.com/kardianos/service")
(synopsis "Run go programs as a service")
(description
"This package provides a simple way to create a system service.")
(license license:zlib)))
(define-public go-github-com-karrick-godirwalk
(package
(name "go-github-com-karrick-godirwalk")