From d68f993e1c2a3dd72083d4f3b124d09ba661dcf1 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Wed, 22 Oct 2025 12:11:59 +0100 Subject: [PATCH] gnu: go-mvdan-cc-editorconfig: Remove cmake-minimal from native-inputs. * gnu/packages/golang-xyz.scm: Remove (gnu packages cmake). (go-mvdan-cc-editorconfig)[native-inputs]: Remove cmake-minimal. [description]: Remove TexInfo formation from pure URL. Change-Id: Ibb50b4caa9d88b20f2bdade19782faf9648e0127 --- gnu/packages/golang-xyz.scm | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index edf7b02bd15747f2a5a9db5fe2a87f35f16b559b..caf9c0445af3aba8f3b7c9b1e0fa6977ed60d235 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -96,7 +96,6 @@ #:use-module (guix utils) #:use-module (gnu packages) #:use-module (gnu packages base) - #:use-module (gnu packages cmake) #:use-module (gnu packages freedesktop) #:use-module (gnu packages gcc) #:use-module (gnu packages glib) @@ -24517,22 +24516,21 @@ recognizers) at run time.") (origin (method git-fetch) (uri (git-reference - (url "https://github.com/mvdan/editorconfig") - (commit (string-append "v" version)))) + (url "https://github.com/mvdan/editorconfig") + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0mi1cp6fyaknjn7smvaas4lj03fws5qib5vbi4mrz3qrmvmhh9l4")))) (build-system go-build-system) (arguments (list - #:import-path "mvdan.cc/editorconfig")) - (native-inputs - (list cmake-minimal)) + #:import-path "mvdan.cc/editorconfig" + #:test-flags #~(list "-skip" "TestViaCmake"))) (home-page "https://github.com/mvdan/editorconfig") (synopsis "EditorConfig support in Go") (description - "Package editorconfig allows parsing and using @code{EditorConfig} files, as -defined in @url{https://editorconfig.org/,https://editorconfig.org/}.") + "Package editorconfig allows parsing and using @code{EditorConfig} +files, as defined in https://editorconfig.org/.") (license license:bsd-3))) (define-public go-mvdan-cc-gofumpt