1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 03:50:45 +02:00

gnu: go-github-com-pkg-xattr: Move to golang-xyz.

* gnu/packages/golang.scm (go-github-com-pkg-xattr): Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.

Change-Id: I4dd02064c98ab0534c2a76e6e709bc1a48089213
This commit is contained in:
Sharlatan Hellseher 2024-12-31 18:01:17 +00:00
parent 8be844b517
commit f4fac34440
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 31 additions and 30 deletions

View file

@ -10031,6 +10031,37 @@ Pion}.")
"This package provides a Go library to create and print diffs.")
(license license:bsd-3)))
(define-public go-github-com-pkg-xattr
(package
(name "go-github-com-pkg-xattr")
(version "0.4.10")
(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 "0rxvfiwgd0z9alj4n8jympmyi68zh1swf3siim8r2h01nm4i0vqh"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/pkg/xattr"))
(propagated-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-polydawn-refmt
(package
(name "go-github-com-polydawn-refmt")