[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/13: gnu: Add go-github-com-pkg-xattr.
From: |
guix-commits |
Subject: |
09/13: gnu: Add go-github-com-pkg-xattr. |
Date: |
Mon, 27 Mar 2023 12:07:05 -0400 (EDT) |
lfam pushed a commit to branch wip-go-updates
in repository guix.
commit b7ba74bb13653e7f6011cad1f017bb77bcc9a30f
Author: Felix Lechner <felix.lechner@lease-up.com>
AuthorDate: Sun Mar 5 12:54:53 2023 -0800
gnu: Add go-github-com-pkg-xattr.
* gnu/packages/golang.scm (go-github-com-pkg-xattr): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
---
gnu/packages/golang.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 8bab117224..9fb2346783 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1406,6 +1406,36 @@ terminals.")
aid data snapshotting.")
(license license:isc)))
+(define-public go-github-com-pkg-xattr
+ (package
+ (name "go-github-com-pkg-xattr")
+ (version "0.4.9")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/pkg/xattr")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0qg4zh0d8m4adaiicsd0cpw0w6g8sk01f4jz7jyxgirh1wfcsqyz"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/pkg/xattr"))
+ (native-inputs (list go-golang-org-x-sys))
+ (home-page "https://github.com/pkg/xattr")
+ (synopsis "Support for extended file system attributes")
+ (description
+ "Package xattr provides support for extended attributes on Linux, Darwin
and
+FreeBSD. Extended attributes are name:value pairs permanently associated with
+files or directories. They are similar to the environment strings associated
with
+a process. An attribute may be defined or undefined. If defined, its value
may
+be empty or non-empty. You can find more details here:
+@@url{https://en.wikipedia.org/wiki/Extended_file_attributes,
+https://en.wikipedia.org/wiki/Extended_file_attributes}
+.")
+ (license license:bsd-2)))
+
(define-public go-github-com-shadowsocks-go-shadowsocks2
(package
(name "go-github-com-shadowsocks-go-shadowsocks2")
- 01/13: gnu: go-golang-org-x-sys: Update to 0.4.0., (continued)
- 01/13: gnu: go-golang-org-x-sys: Update to 0.4.0., guix-commits, 2023/03/27
- 04/13: gnu: Add go-github-com-aperturerobotics-jacobsa-crypto., guix-commits, 2023/03/27
- 06/13: gnu: Add go-github-com-jacobsa-oglemock., guix-commits, 2023/03/27
- 11/13: gnu: Add gocryptfs., guix-commits, 2023/03/27
- 12/13: gnu: Go 1.19: Update to 1.19.7., guix-commits, 2023/03/27
- 10/13: gnu: Add go-github-com-rfjakob-eme., guix-commits, 2023/03/27
- 08/13: gnu: Add go-github-com-jacobsa-reqtrace., guix-commits, 2023/03/27
- 05/13: gnu: Add go-github-com-jacobsa-oglematchers., guix-commits, 2023/03/27
- 13/13: gnu: Go 1.20: Update to 1.20.2., guix-commits, 2023/03/27
- 07/13: gnu: Add go-github-com-jacobsa-ogletest., guix-commits, 2023/03/27
- 09/13: gnu: Add go-github-com-pkg-xattr.,
guix-commits <=