diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-11 14:44:43 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:47:58 +0000 |
commit | 22b4bd772ab9beb6c3c9088b01d724a2104b6a4f (patch) | |
tree | 14e841c7ede51f2b3a3bcdbf47413b7be5cd6e37 /gnu/packages/golang-xyz.scm | |
parent | ca1312816b7eaac0afd3d7c51a91db6364ed9a2e (diff) |
gnu: Add go-github-com-klauspost-asmfmt.
* gnu/packages/golang-xyz.scm (go-github-com-klauspost-asmfmt,
go-asmfmt): New variables.
Change-Id: Ib6d7b3f0e844e8f3a5e1b29d458faa115b9d670a
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 2cf575ad1b..cff3afcc7d 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -8830,6 +8830,30 @@ Goroutine-safe connections) manipulate processes in a safe way.") (license license:expat))) +(define-public go-github-com-klauspost-asmfmt + (package + (name "go-github-com-klauspost-asmfmt") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/klauspost/asmfmt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01qas9x9qb0s1aiq0235p8hvvqqn76ff0cs4cg71paxcy6l1a4k3")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/klauspost/asmfmt")) + (home-page "https://github.com/klauspost/asmfmt") + (synopsis "Go Assembler Formatter") + (description + "This package implements functionality to format Assembler code the same +way that @code{gofmt} formats Go code.") + (license license:expat))) + (define-public go-github-com-klauspost-cpuid (package (name "go-github-com-klauspost-cpuid") @@ -16710,6 +16734,17 @@ library.") #:import-path "github.com/yuin/gopher-lua/cmd/glua" #:unpack-path "github.com/yuin/gopher-lua")))) +(define-public go-asmfmt + (package + (inherit go-github-com-klauspost-asmfmt) + (name "go-asmfmp") + (arguments + (list + #:tests? #f + #:install-source? #f + #:import-path "github.com/klauspost/asmfmt/cmd/asmfmt" + #:unpack-path "github.com/klauspost/asmfmt")))) + (define-public go-chroma (package (inherit go-github-com-alecthomas-chroma-v2) |