guix_mirror_bot pushed a commit to branch master in repository guix. commit e4688646713f5291aa678bc2a788cac14a24ffc5 Author: Maxim Cournoyer <maxim.courno...@gmail.com> AuthorDate: Fri May 30 22:56:00 2025 +0900
gnu: Add godef. * gnu/packages/go-apps.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Register it. Change-Id: I867c032fe55085a09ce361667a70b7e5260ddb98 Signed-off-by: Liliana Marie Prikler <liliana.prik...@gmail.com> --- gnu/local.mk | 1 + gnu/packages/go-apps.scm | 62 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+) diff --git a/gnu/local.mk b/gnu/local.mk index f534768c2d..2948bfb1bf 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -340,6 +340,7 @@ GNU_SYSTEM_MODULES = \ %D%/packages/gnustep.scm \ %D%/packages/gnuzilla.scm \ %D%/packages/gnu-pw-mgr.scm \ + %D%/packages/go-apps.scm \ %D%/packages/gobby.scm \ %D%/packages/golang.scm \ %D%/packages/golang-build.scm \ diff --git a/gnu/packages/go-apps.scm b/gnu/packages/go-apps.scm new file mode 100644 index 0000000000..8f91dd4ed7 --- /dev/null +++ b/gnu/packages/go-apps.scm @@ -0,0 +1,62 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2025 Maxim Cournoyer <maxim.courno...@gmail.com> +;;; +;;; This file is part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. + +(define-module (gnu packages go-apps) + #:use-module (guix build-system go) + #:use-module (guix gexp) + #:use-module (guix git-download) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix packages) + #:use-module (gnu packages) + #:use-module (gnu packages golang) + #:use-module (gnu packages golang-build) + #:use-module (gnu packages golang-check) + #:use-module (gnu packages golang-xyz)) + +(define-public godef + (package + (name "godef") + (version "1.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/godef") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rhhg73kzai6qzhw31yxw3nhpsijn849qai2v9am955svmnckvf4")) + (modules '((guix build utils))) + (snippet '(delete-file-recursively "vendor")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/rogpeppe/godef" + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'delete-problematic-tests + (lambda _ + ;; The TestGoDef/Modules test fails, because of the lack of Go + ;; modules support. + (delete-file "src/github.com/rogpeppe/godef/godef_test.go")))))) + (inputs (list go-golang-org-x-tools go-ninefans-net-go)) + (home-page "https://github.com/rogpeppe/godef") + (synopsis "Print where symbols are defined in Go source code") + (description "The @command{godef} command prints the source location of +definitions in Go programs.") + (license license:bsd-3)))