guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 81ad5485de3a2fde352a85aa16b996b82bfa17f6
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Jul 7 15:59:39 2025 +0100

    gnu: Add go-github-com-mrunalp-fileutils.
    
    * gnu/packages/golang-xyz.scm (go-github-com-mrunalp-fileutils): New 
variable.
    
    Change-Id: I1623a94b5bf32eb70899bef3b6bed68e1942823c
---
 gnu/packages/golang-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 2b5198a3eb..7c997ab994 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -13137,6 +13137,32 @@ command line flags, config files, and default struct 
values.")
 
@url{https://github.com/judwhite/go-svc/raw/master/svc/svc_windows_test.go,here}.";)
       (license license:expat))))
 
+(define-public go-github-com-mrunalp-fileutils
+  (package
+    (name "go-github-com-mrunalp-fileutils")
+    (version "0.5.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/mrunalp/fileutils";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1nanl3vypvjlmjyjmv1ngz3lxvc5l55cn9xgr6k36wck5l37jcpi"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/mrunalp/fileutils"
+      ;; Not able to Lstat the device: lstat /dev/mem: no such file or 
directory.
+      #:test-flags #~(list "-skip" "TestDeviceNumbers")))
+    (home-page "https://github.com/mrunalp/fileutils";)
+    (synopsis "Collection of utilities for file manipulation in golang")
+    (description
+     "This package provides a collection of utilities for file manipulation in
+golang.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-msteinert-pam
   (package
     (name "go-github-com-msteinert-pam")

Reply via email to