~ruther/guix-local

ba64dcf16276b9246a5ca3fac767c83778b6f775 — Patrick Norton 4 months ago b6987c5
gnu: Add go-github-com-anacrolix-ffprobe.

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

Change-Id: If040a18fe44f9d77af132b67bc60dea9ac6c4054
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
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
@@ 1627,6 1627,33 @@ bar writers can be supplied for alternate environments.")
    (description "This package provides generic implementations for Go.")
    (license license:mpl2.0)))

(define-public go-github-com-anacrolix-ffprobe
  (package
    (name "go-github-com-anacrolix-ffprobe")
    (version "1.1.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/anacrolix/ffprobe")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1yx8hajqzrf2qn00b3fzb45gfqx7yk99hvklamsgmxzxxmmllcx0"))))
    (build-system go-build-system)
    (arguments
     (list
      #:tests? #f ;TODO: Tests require additional packages
      #:import-path "github.com/anacrolix/ffprobe"))
    (propagated-inputs
     (list go-github-com-stretchr-testify
           ;; go-github-com-anacrolix-missinggo-v2
           go-github-com-anacrolix-envpprof))
    (home-page "https://github.com/anacrolix/ffprobe")
    (synopsis "Go ffprobe wrapper")
    (description "This package wraps and interprets ffmpeg's ffprobe for Go.")
    (license license:mpl2.0)))

(define-public go-github-com-anacrolix-log
  (package
    (name "go-github-com-anacrolix-log")