From b6987c589b6b21442e831cd3872b91963e42fbd5 Mon Sep 17 00:00:00 2001 From: Patrick Norton Date: Mon, 24 Nov 2025 11:32:37 -0500 Subject: [PATCH] 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 --- 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 a48103c5b16947f3c86790b747e2df396f0ac1ca..412417d6f109697b8f15ff0d35caf2d40ec8d225 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")