mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-15 19:40:46 +02:00
gnu: go-github-com-klauspost-cpuid: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-klauspost-cpuid): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: I85bc873816f653bf5e4ce2882259708d5f37ca28
This commit is contained in:
parent
6fed47ad94
commit
e48e8fe8d5
2 changed files with 27 additions and 25 deletions
|
@ -2152,6 +2152,33 @@ word-splitting rules.")
|
||||||
(home-page "https://github.com/kballard/go-shellquote")
|
(home-page "https://github.com/kballard/go-shellquote")
|
||||||
(license license:expat))))
|
(license license:expat))))
|
||||||
|
|
||||||
|
(define-public go-github-com-klauspost-cpuid
|
||||||
|
(package
|
||||||
|
(name "go-github-com-klauspost-cpuid")
|
||||||
|
(version "1.2.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/klauspost/cpuid")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1s510210wdj5dkamii1qrk7v87k4qpdcrrjzflp5ha9iscw6b06l"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/klauspost/cpuid"))
|
||||||
|
(home-page "https://github.com/klauspost/cpuid")
|
||||||
|
(synopsis "CPU feature identification for Go")
|
||||||
|
(description
|
||||||
|
"@code{cpuid} provides information about the CPU running the current
|
||||||
|
program. CPU features are detected on startup, and kept for fast access
|
||||||
|
through the life of the application. Currently x86 / x64 (AMD64) is
|
||||||
|
supported, and no external C (cgo) code is used, which should make the library
|
||||||
|
very eas to use.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-lestrrat-go-envload
|
(define-public go-github-com-lestrrat-go-envload
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-lestrrat-go-envload")
|
(name "go-github-com-lestrrat-go-envload")
|
||||||
|
|
|
@ -6603,31 +6603,6 @@ characters with their ASCII approximations.")
|
||||||
(description "Go library that pluralizes and singularizes English nouns.")
|
(description "Go library that pluralizes and singularizes English nouns.")
|
||||||
(license license:bsd-2))))
|
(license license:bsd-2))))
|
||||||
|
|
||||||
(define-public go-github-com-klauspost-cpuid
|
|
||||||
(package
|
|
||||||
(name "go-github-com-klauspost-cpuid")
|
|
||||||
(version "1.2.3")
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/klauspost/cpuid")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1s510210wdj5dkamii1qrk7v87k4qpdcrrjzflp5ha9iscw6b06l"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:import-path "github.com/klauspost/cpuid"))
|
|
||||||
(home-page "https://github.com/klauspost/cpuid")
|
|
||||||
(synopsis "CPU feature identification for Go")
|
|
||||||
(description "@code{cpuid} provides information about the CPU running the
|
|
||||||
current program. CPU features are detected on startup, and kept for fast access
|
|
||||||
through the life of the application. Currently x86 / x64 (AMD64) is supported,
|
|
||||||
and no external C (cgo) code is used, which should make the library very eas
|
|
||||||
to use.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public go-github-com-surge-glog
|
(define-public go-github-com-surge-glog
|
||||||
(let ((commit "2578deb2b95c665e6b1ebabf304ce2085c9e1985")
|
(let ((commit "2578deb2b95c665e6b1ebabf304ce2085c9e1985")
|
||||||
(revision "1"))
|
(revision "1"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue