guix_mirror_bot pushed a commit to branch master
in repository guix.
commit ba64dcf16276b9246a5ca3fac767c83778b6f775
Author: Patrick Norton <[email protected]>
AuthorDate: Mon Nov 24 11:37:12 2025 -0500
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 <[email protected]>
---
gnu/packages/golang-xyz.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 412417d6f1..5d558cabd5 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -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")