diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-07 15:59:39 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-22 20:13:03 +0100 |
commit | 81ad5485de3a2fde352a85aa16b996b82bfa17f6 (patch) | |
tree | 4d9880aab5d4fd6cc240bb0f7f45a32a816d5112 /gnu/packages/golang-xyz.scm | |
parent | 435a9267090550b0ddd28b1502cb1bf4f4332378 (diff) |
gnu: Add go-github-com-mrunalp-fileutils.
* gnu/packages/golang-xyz.scm (go-github-com-mrunalp-fileutils): New variable.
Change-Id: I1623a94b5bf32eb70899bef3b6bed68e1942823c
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 26 |
1 files changed, 26 insertions, 0 deletions
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") |