diff options
author | Sharlatan Hellseher <[email protected]> | 2025-01-08 18:56:54 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:47:44 +0000 |
commit | 6332710164e8b92321c0ee3e5a762564041279c8 (patch) | |
tree | 7c9867c9c43b083c48760367fd516b9c845ea45c | |
parent | 695ff1ae63dba54dac4097d8f16579a363df861c (diff) |
gnu: Remove go-github-com-zenhack-go-notmuch.
Not in use by any other packages in Guix, no updates for 3 years.
* gnu/packages/golang.scm (go-github-com-zenhack-go-notmuch): Delete variable.
Change-Id: I1a28aff813415e912eff1c57136590bff5896472
-rw-r--r-- | gnu/packages/golang.scm | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index da25fcd0d2..7a13673b9a 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -3902,52 +3902,6 @@ result is a conceptually simple, but highly performant, disk-backed storage syst (base32 "1lk91s00y4qy4pjh8638b5lfkgwyl282g1m27srsf7qfn58y16a2")))) -(define-public go-github-com-zenhack-go-notmuch - (package - (name "go-github-com-zenhack-go-notmuch") - (version "0.0.0-20211022191430-4d57e8ad2a8b") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/zenhack/go.notmuch") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1j2s5smjf7pp7i72dw12sm9iz961y3cy8nkm7hmrg53f6wna57h9")))) - (build-system go-build-system) - (arguments - (list #:import-path "github.com/zenhack/go.notmuch" - #:phases #~(modify-phases %standard-phases - (add-after 'unpack 'patch-notmuch-path - (lambda* (#:key inputs import-path - #:allow-other-keys) - (substitute* (find-files (string-append "src/" - import-path) "\\.go$") - (("// #cgo LDFLAGS:.*$") - (string-append "// #cgo LDFLAGS: -lnotmuch " - "-L" - #$(this-package-input "notmuch") - "/lib\n" - "// #cgo CFLAGS: " - "-I" - #$(this-package-input "notmuch") - "/include\n"))))) - (add-before 'check 'unpack-test-fixtures - (lambda* (#:key inputs import-path - #:allow-other-keys) - (invoke "tar" "xf" - #+notmuch-fixtures "-C" - (string-append "src/" import-path - "/fixtures"))))))) - (inputs (list notmuch)) - (home-page "https://github.com/zenhack/go.notmuch") - (synopsis "Go bindings to libnotmuch") - (description - "The notmuch package provides a Go language binding to the notmuch -email library.") - (license license:gpl3+))) - (define-public go-github-com-riywo-loginshell (package (name "go-github-com-riywo-loginshell") |