~ruther/guix-local

3ca3c8699556edaaa07795d562cf5cd885907219 — Sharlatan Hellseher 8 months ago 0010e22
gnu: Add go-github-com-moby-sys-reexec.

* gnu/packages/golang-xyz.scm (go-github-com-moby-sys-reexec): New variable.

Change-Id: Iebcc2cd1273a434864cc8706504ac15ec0354545
1 files changed, 27 insertions(+), 0 deletions(-)

M gnu/packages/golang-xyz.scm
M gnu/packages/golang-xyz.scm => gnu/packages/golang-xyz.scm +27 -0
@@ 14721,6 14721,33 @@ about OS mounts as seen by the current process is available from
names.")
    (license license:asl2.0)))

(define-public go-github-com-moby-sys-reexec
  (package
    (name "go-github-com-moby-sys-reexec")
    (version "0.1.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/moby/sys")
             (commit (go-version->git-ref version
                                          #:subdir "reexec"))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1n2z0zqfdyw6rllqdljddczh758kq22k4ajrhv27shv7m3fnvm0p"))))
    (build-system go-build-system)
    (arguments
     (list
      #:import-path "github.com/moby/sys/reexec"
      #:unpack-path "github.com/moby/sys"))
    (home-page "https://github.com/moby/sys")
    (synopsis "BusyBox style reexec of a binary for Golang")
    (description
     "This package facilitates the BusyBox style reexec of a binary.
Handlers can be registered with a name and the argv 0 of the exec of the
binary will be used to find and execute custom init paths.")
    (license license:asl2.0)))

(define-public go-github-com-moby-sys-sequential
  (package
    (name "go-github-com-moby-sys-sequential")