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

gnu: go-github-com-magiconair-properties: Move to golang-xyz.

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

Change-Id: I573da477818bd38cda435568fcc751e28ee6d35e
This commit is contained in:
Sharlatan Hellseher 2025-01-06 22:01:08 +00:00
parent af4b9d055b
commit b0124e8af2
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 22 additions and 22 deletions

View file

@ -8604,6 +8604,28 @@ Printf/Sprintf etc.")
generation.")
(license license:asl2.0)))
(define-public go-github-com-magiconair-properties
(package
(name "go-github-com-magiconair-properties")
(version "1.8.9")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/magiconair/properties")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "05nkgdzl393505arq6hf1wxjxs2iaqkc88v5cy1s068abpl65xy0"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/magiconair/properties"))
(home-page "https://github.com/magiconair/properties")
(synopsis "Java properties scanner for Go")
(description "Java properties scanner for Go")
(license license:bsd-2)))
(define-public go-github-com-makenowjust-heredoc
(package
(name "go-github-com-makenowjust-heredoc")