guix_mirror_bot pushed a commit to branch master
in repository guix.

commit b6987c589b6b21442e831cd3872b91963e42fbd5
Author: Patrick Norton <[email protected]>
AuthorDate: Mon Nov 24 11:32:37 2025 -0500

    gnu: Add go-github-com-nfnt-resize.
    
    * gnu/packages/golang-xyz.scm (go-github-com-nfnt-resize): New variable.
    
    Change-Id: I338c416d9538d2c0fad990de87276b0601699b17
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index a48103c5b1..412417d6f1 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -16840,6 +16840,30 @@ through it's psuedoterminal.")
 list of sentences.")
     (license license:expat)))
 
+(define-public go-github-com-nfnt-resize
+  (package
+    (name "go-github-com-nfnt-resize")
+    (version "0.0.0-20180221191011-83c6a9932646")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/nfnt/resize";)
+              (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "005cpiwq28krbjf0zjwpfh63rp4s4is58700idn24fs3g7wdbwya"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/nfnt/resize"))
+    (home-page "https://github.com/nfnt/resize";)
+    (synopsis "Pure Golang image resizing")
+    (description
+     "This package implements image resizing for the Go programming language 
with
+common interpolation methods.")
+    (license license:isc)))
+
 (define-public go-github-com-nicksnyder-go-i18n-v2
   (package
     (name "go-github-com-nicksnyder-go-i18n-v2")

Reply via email to