gnu: Change upstream for the go-nat-pmp Go NAT-PMP client.
* gnu/packages/syncthing.scm (go-github-com-audriusbutkevicius-go-nat-pmp): Replace with ... (go-github-com-jackpal-go-nat-pmp): ... new package. (syncthing)[inputs]: Adjust accordingly.
This commit is contained in:
parent
726727e163
commit
6ac3b835d1
1 changed files with 22 additions and 23 deletions
|
@ -52,8 +52,8 @@
|
||||||
;; When updating Syncthing, check 'go.mod' in the source distribution to
|
;; When updating Syncthing, check 'go.mod' in the source distribution to
|
||||||
;; ensure we are using the correct versions of these dependencies.
|
;; ensure we are using the correct versions of these dependencies.
|
||||||
(inputs
|
(inputs
|
||||||
`(("go-github-com-audriusbutkevicius-go-nat-pmp"
|
`(("go-github-com-jackpal-go-nat-pmp"
|
||||||
,go-github-com-audriusbutkevicius-go-nat-pmp)
|
,go-github-com-jackpal-go-nat-pmp)
|
||||||
("go-github-com-bkaradzic-go-lz4" ,go-github-com-bkaradzic-go-lz4)
|
("go-github-com-bkaradzic-go-lz4" ,go-github-com-bkaradzic-go-lz4)
|
||||||
("go-github-com-calmh-xdr" ,go-github-com-calmh-xdr)
|
("go-github-com-calmh-xdr" ,go-github-com-calmh-xdr)
|
||||||
("go-github-com-chmduquesne-rollinghash"
|
("go-github-com-chmduquesne-rollinghash"
|
||||||
|
@ -163,29 +163,28 @@ Protocol.")
|
||||||
(home-page "https://github.com/syncthing/syncthing")
|
(home-page "https://github.com/syncthing/syncthing")
|
||||||
(license mpl2.0)))
|
(license mpl2.0)))
|
||||||
|
|
||||||
(define-public go-github-com-audriusbutkevicius-go-nat-pmp
|
(define-public go-github-com-jackpal-go-nat-pmp
|
||||||
(let ((commit "452c97607362b2ab5a7839b8d1704f0396b640ca")
|
(package
|
||||||
(revision "0"))
|
(name "go-github-com-jackpal-go-nat-pmp")
|
||||||
(package
|
(version "1.0.2")
|
||||||
(name "go-github-com-audriusbutkevicius-go-nat-pmp")
|
(source (origin
|
||||||
(version (git-version "0.0.0" revision commit))
|
(method git-fetch)
|
||||||
(source (origin
|
(uri (git-reference
|
||||||
(method git-fetch)
|
(url "https://github.com/jackpal/go-nat-pmp")
|
||||||
(uri (git-reference
|
(commit (string-append "v" version))))
|
||||||
(url "https://github.com/AudriusButkevicius/go-nat-pmp")
|
(file-name (git-file-name name version))
|
||||||
(commit commit)))
|
(sha256
|
||||||
(file-name (git-file-name name version))
|
(base32
|
||||||
(sha256
|
"1p2yrzfbkazc9nisr2iqjwzhb6q16zj6finyxxn2ikk7iiighl1g"))))
|
||||||
(base32 "1accmpl1llk16a19nlyy991fqrgfay6l53gb64hgmdfmqljdvbk7"))))
|
(build-system go-build-system)
|
||||||
(build-system go-build-system)
|
(arguments
|
||||||
(arguments
|
`(#:import-path "github.com/jackpal/go-nat-pmp"))
|
||||||
`(#:import-path "github.com/AudriusButkevicius/go-nat-pmp"))
|
(synopsis "Port mapping and discovery of external IP address")
|
||||||
(synopsis "Port mapping and discovery of external IP address")
|
(description "This package provides a Go client for the NAT-PMP internet
|
||||||
(description "This package provides a Go client for the NAT-PMP internet
|
|
||||||
protocol for port mapping and discovering the external IP address of a
|
protocol for port mapping and discovering the external IP address of a
|
||||||
firewall.")
|
firewall.")
|
||||||
(home-page "https://github.com/AudriusButkevicius/go-nat-pmp")
|
(home-page "https://github.com/jackpal/go-nat-pmp")
|
||||||
(license asl2.0))))
|
(license asl2.0)))
|
||||||
|
|
||||||
(define-public go-github-com-audriusbutkevicius-recli
|
(define-public go-github-com-audriusbutkevicius-recli
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue