gnu: Add go-github-com-freddierice-go-losetup.

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

Change-Id: Ic130aadebf984ad120b45bd8c83dbe13ae6886b7
Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Arthur Rodrigues 2025-08-17 12:20:02 -03:00 committed by Sharlatan Hellseher
parent 1cd5166e67
commit 50b5f09d81
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -7012,6 +7012,35 @@ quoting, commenting, and escaping.")
"@code{gg} is a library for rendering 2D graphics in pure Go.")
(license license:expat)))
(define-public go-github-com-freddierice-go-losetup
(package
(name "go-github-com-freddierice-go-losetup")
(version "2.0.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/freddierice/go-losetup")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1qhc81r3cxhx16c7pkgwpkhkz1xn47xjcgfwydvlgh9f04cyydpq"))
(snippet
#~(begin (use-modules (guix build utils))
(delete-file-recursively "vendor")))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/freddierice/go-losetup"))
(propagated-inputs
(list go-golang-org-x-sys))
(home-page "https://github.com/freddierice/go-losetup")
(synopsis "Loop devices for Golang")
(description
;; XXX: Project's REAME lacks details.
"This package implements @code{/dev/loop} device in Go.")
(license license:expat)))
(define-public go-github-com-fsnotify-fsnotify
(package
(name "go-github-com-fsnotify-fsnotify")