diff options
author | Sharlatan Hellseher <[email protected]> | 2025-01-06 22:01:08 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:47:41 +0000 |
commit | b0124e8af21b2c4490801cc5cf834f5514c76a04 (patch) | |
tree | 712f7b7b1c74ab5adf4683a921c31c714637cf11 /gnu/packages/golang-xyz.scm | |
parent | af4b9d055b2d17fd7f04fdef57252f20d8cb056a (diff) |
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
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 0d77a45f51..5d19d8fc41 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -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") |