diff options
| author | Raven Hallsby <karl@hallsby.com> | 2025-10-25 12:25:27 -0500 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-11-04 20:35:29 +0000 |
| commit | 366d1d837f09ee3aa9ede58f51d0f4a63a8f9221 (patch) | |
| tree | d25aeb439b952b529c406a7394a0408fddf9cc78 /gnu | |
| parent | 78d4de01c80891534fd40978eb080ce9816f5a3f (diff) | |
gnu: Add go-github-com-editorconfig-core-go-v2.
* gnu/packages/text-editors.scm (go-github-com-editorconfig-core-go-v2): New variable.
Change-Id: If7bdced0087ffc0776395a67781f961f396a4450
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 0631bd3a412..d120d2d74e3 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -6802,6 +6802,38 @@ implementations fewer GC pauses.") (license license:expat))) +(define-public go-github-com-editorconfig-editorconfig-core-go-v2 + (package + (name "go-github-com-editorconfig-core-go-v2") + (version "2.6.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/editorconfig/editorconfig-core-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0m8jjxj73l6hva5idpbawcm1f3jiyd2qpfj8n2h21w07virhlib2")))) + (build-system go-build-system) + (arguments + (list + #:skip-build? #t + #:import-path "github.com/editorconfig/editorconfig-core-go/v2")) + (native-inputs + (list go-github-com-google-go-cmp)) + (propagated-inputs + (list go-golang-org-x-mod + go-gopkg-in-ini-v1)) + (home-page "https://editorconfig.org/") + (synopsis "EditorConfig core library for Golang") + (description + "EditorConfig makes it easy to maintain the correct coding style when +switching between different text editors and between different projects. It +maintains a file format and plugins for various text editors which allow this +file format to be read and used by those editors.") + (license license:expat))) + (define-public go-github-com-edsrzf-mmap-go (package (name "go-github-com-edsrzf-mmap-go") |
