diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-08 20:46:14 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:47:46 +0000 |
commit | ddf0505f6036172754bf0f449f248367fb66bd43 (patch) | |
tree | 505988865fcfdb0e727907add0c6360430613bd1 /gnu/packages/golang-xyz.scm | |
parent | 788c37bca9fbc89b7f751abe87fb67d71f2f86b3 (diff) |
gnu: go-github-com-kardianos-minwinsvc: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-kardianos-minwinsvc): Move from
here ...
* gnu/packages/golang-xyz.scm: ... to here.
Change-Id: Iba04b2b29011afe7b53f1e00062604ae42121650
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index d398dd1e0e..d7fd1f4a3e 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -8136,6 +8136,33 @@ ansi.") customized globally.") (license license:expat))) +;; Some packages (Yggdrasil) need it to compile it's a tiny package and it's +;; easier to bundle it than to patch it out. +(define-public go-github-com-kardianos-minwinsvc + (package + (name "go-github-com-kardianos-minwinsvc") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kardianos/minwinsvc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02k2vibmm65bzkdjpmllphvq88wwyz3m02lbz8bffcpxjad2453v")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/kardianos/minwinsvc")) + (home-page "https://github.com/kardianos/minwinsvc/") + (synopsis "Minimal windows only service stub for Go") + (description + "Go programs designed to run from most *nix style operating systems can +import this package to enable running programs as services without modifying +them.") + (license license:zlib))) + (define-public go-github-com-kardianos-service (package (name "go-github-com-kardianos-service") |