diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-08-25 23:47:42 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-08-25 23:54:35 +0100 |
commit | 0b8b9bfbfd28f265b00797e4b77ea963269c8534 (patch) | |
tree | 3b6ba40c7eb9b6e12f6522fafa03dd3157517b4c /gnu | |
parent | e26dcdf6bc871da4b0126b60c756116e659c9955 (diff) | |
download | guix-0b8b9bfbfd28f265b00797e4b77ea963269c8534.tar guix-0b8b9bfbfd28f265b00797e4b77ea963269c8534.tar.gz |
gnu: Remove gx-go.
This project is abandoned and not in use by IPFS/Kubo any longer, see
<https://github.com/whyrusleeping/gx-go/issues/65>.
* gnu/packages/ipfs.scm (gx-go): Delete variable.
Change-Id: Ic1235801a958c066de5af35947fad90cafc97dd0
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ipfs.scm | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm index 220439e27f..9533a93aaa 100644 --- a/gnu/packages/ipfs.scm +++ b/gnu/packages/ipfs.scm @@ -933,59 +933,6 @@ powerful and simple.") '(#:unpack-path "github.com/whyrusleeping/gx" #:import-path "github.com/whyrusleeping/gx/gxutil")))) -;; XXX: No updates for 4 years, and depends on dated Golang modules which -;; require go-1.16 to compile, see -;; <https://github.com/whyrusleeping/gx-go/issues/65>. -(define-public gx-go - (package - (name "gx-go") - (version "1.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/whyrusleeping/gx-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0fdy4b3ymqw6hzvvjwq37mfrdmizc8lxm53axw93n3x6118na9jc")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/whyrusleeping/gx-go")) - (native-inputs - (list go-github-com-whyrusleeping-gx-util - go-github-com-kr-fs - go-github-com-gxed-hashland-keccakpg - go-github-com-ipfs-go-ipfs-api - go-github-com-ipfs-go-ipfs-cmdkit-files - go-github-com-libp2p-go-flow-metrics - go-github-com-libp2p-go-libp2p-crypto - go-github-com-libp2p-go-libp2p-metrics - go-github-com-libp2p-go-libp2p-peer - go-github-com-libp2p-go-libp2p-protocol - go-github-com-minio-blake2b-simd - go-github-com-minio-sha256-simd - go-github-com-mitchellh-go-homedir - go-github-com-mr-tron-base58 - go-github-com-multiformats-go-multiaddr - go-github-com-multiformats-go-multiaddr-net - go-github-com-multiformats-go-multihash - go-github-com-spaolacci-murmur3 - go-github-com-whyrusleeping-tar-utils - go-github-com-btcsuite-btcd-btcec - go-github-com-gogo-protobuf - go-github-com-sabhiram-go-gitignore - go-github-com-urfave-cli - go-github-com-whyrusleeping-progmeter - go-github-com-whyrusleeping-stump - go-golang-org-x-crypto)) - (home-page "https://github.com/whyrusleeping/gx-go") - (synopsis "Golang subtool for the @command{gx} package manager") - (description "A subtool for the @command{gx} package manager for packages -written in Go.") - (license license:expat))) - (define-public kubo (package (name "kubo") |