[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#40086] [PATCH 06/11] gnu: Add go-github-com-klauspost-cpuid.
From: |
Efraim Flashner |
Subject: |
[bug#40086] [PATCH 06/11] gnu: Add go-github-com-klauspost-cpuid. |
Date: |
Mon, 16 Mar 2020 09:15:53 +0200 |
* gnu/packages/golang.scm (go-github-com-klauspost-cpuid): New variable.
---
gnu/packages/golang.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 419b88552a..11dfb23e46 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3526,3 +3526,28 @@ characters with their ASCII approximations.")
(synopsis "Go library that pluralizes and singularizes English nouns")
(description "Go library that pluralizes and singularizes English
nouns.")
(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)))
--
2.25.1
- [bug#40086] [PATCH 00/11] Expand edirect programs, Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 01/11] gnu: Add go-golang-org-x-image., Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 02/11] gnu: Add go-golang-org-rainycape-unidecode., Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 03/11] gnu: Add go-github-com-golang-freetype., Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 04/11] gnu: Add go-github-com-fogleman-gg., Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 05/11] gnu: Add go-github-com-gedex-inflector., Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 06/11] gnu: Add go-github-com-klauspost-cpuid.,
Efraim Flashner <=
- [bug#40086] [PATCH 07/11] gnu: Add go-github-com-pbnjay-memory., Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 06/11] gnu: Add go-github-com-klauspost-cpuid., Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 08/11] gnu: Add go-github-com-surge-glog., Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 09/11] gnu: Add go-github-com-surgebase-porter2., Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 11/11] gnu: edirect: Install more programs., Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 10/11] gnu: Add edirect-go-programs., Efraim Flashner, 2020/03/16
- bug#40086: [PATCH 00/11] Expand edirect programs, Efraim Flashner, 2020/03/22