1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-17 12:30:38 +02:00

gnu: go-howett-net-plist: Move to golang-xyz.

* gnu/packages/golang.scm (go-howett-net-plist): Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.

Change-Id: Ib43cfcd5783bc37a4b84e892b443683c5d6443ae
This commit is contained in:
Sharlatan Hellseher 2024-12-27 15:36:55 +00:00
parent 645d65f8a1
commit 0440821acf
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 29 additions and 29 deletions

View file

@ -12221,6 +12221,35 @@ The yaml package supports most of YAML 1.2, but preserves some behavior from
1.1 for backwards compatibility.")
(license license:asl2.0)))
(define-public go-howett-net-plist
(package
(name "go-howett-net-plist")
(version "1.0.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/DHowett/go-plist")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1gcrxkmdj87xq01458asgxvvijrkih74ydbzfmir1p16xr9z0x39"))))
(build-system go-build-system)
(arguments
(list
#:import-path "howett.net/plist"
;; cmd requires gopkg.in/yaml.v1
#:test-subdirs #~(list "internal/..." ".")))
(propagated-inputs
(list go-github-com-jessevdk-go-flags
go-gopkg-in-check-v1))
(home-page "https://github.com/DHowett/go-plist")
(synopsis "Apple property list transcoder")
(description
"This list transcoder supports encoding/decoding property lists (Apple
XML, Apple Binary, OpenStep, and GNUStep) from/to arbitrary Go types.")
(license license:giftware)))
(define-public go-k8s-io-gengo-v2
(package
(name "go-k8s-io-gengo-v2")