mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 12:09:15 -05:00
gnu: go-github-com-dhowett-go-plist: Improve package style.
* gnu/packages/golang.scm (go-github-com-dhowett-go-plist): Fix indentation. Apply new style. Swap inputs to propagated-inputs. [inputs]: Remove go-github-com-jessevdk-go-flags, go-github-com-kr-pretty, go-gopkg-in-check-v1, and go-gopkg-in-yaml-v2. [propagated-inputs]: Add go-github-com-jessevdk-go-flags and go-gopkg-in-check-v1. Change-Id: I01f2d222b72e9d8d52e0f5c1953d36703d03fb6b
This commit is contained in:
parent
424c6fe0a2
commit
226cd42a5f
1 changed files with 25 additions and 23 deletions
|
@ -1738,29 +1738,31 @@ (define-public go-github-com-deckarep-golang-set
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-dhowett-go-plist
|
(define-public go-github-com-dhowett-go-plist
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-dhowett-go-plist")
|
(name "go-github-com-dhowett-go-plist")
|
||||||
(version "1.0.1")
|
(version "1.0.1")
|
||||||
(source (origin
|
(source
|
||||||
(method git-fetch)
|
(origin
|
||||||
(uri (git-reference
|
(method git-fetch)
|
||||||
(url "https://github.com/DHowett/go-plist")
|
(uri (git-reference
|
||||||
(commit (string-append "v" version))))
|
(url "https://github.com/DHowett/go-plist")
|
||||||
(file-name (git-file-name name version))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"1gcrxkmdj87xq01458asgxvvijrkih74ydbzfmir1p16xr9z0x39"))))
|
(base32 "1gcrxkmdj87xq01458asgxvvijrkih74ydbzfmir1p16xr9z0x39"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments `(#:import-path "howett.net/plist"))
|
(arguments
|
||||||
(inputs
|
(list
|
||||||
(list go-github-com-jessevdk-go-flags go-github-com-kr-pretty
|
#:import-path "howett.net/plist"))
|
||||||
go-gopkg-in-check-v1 go-gopkg-in-yaml-v2))
|
(propagated-inputs
|
||||||
(home-page "https://github.com/DHowett/go-plist")
|
(list go-github-com-jessevdk-go-flags
|
||||||
(synopsis "Apple property list transcoder")
|
go-gopkg-in-check-v1))
|
||||||
(description "This list transcoder supports encoding/decoding property
|
(home-page "https://github.com/DHowett/go-plist")
|
||||||
lists (Apple XML, Apple Binary, OpenStep, and GNUStep) from/to arbitrary Go
|
(synopsis "Apple property list transcoder")
|
||||||
types.")
|
(description
|
||||||
(license license:giftware)))
|
"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-github-com-blanu-dust
|
(define-public go-github-com-blanu-dust
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue