mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: openrdap: Improve package.
* gnu/packages/networking.scm (openrdap): Fix indentation. [arguments] <install-source?>: As for final executable avoid it. <test-subdirs>: Test the whole module. [native-inputs]: Move everything from [propagated-inputs] here. [propagated-inputs]: Drop all. Change-Id: I115d982c3ff02cc8a89128975e1ed8dd6a1a803d
This commit is contained in:
parent
9ee7fe20c9
commit
d9c6f8d2e0
1 changed files with 11 additions and 8 deletions
|
@ -5225,21 +5225,24 @@ recording packets that are dropped by the kernel. It provides the commands
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/openrdap/rdap")
|
(url "https://github.com/openrdap/rdap")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1w3kwxh3hvkp5x1m6i4ijydmpfpibgf9jkviqrvpcadh335989hn"))))
|
(base32 "1w3kwxh3hvkp5x1m6i4ijydmpfpibgf9jkviqrvpcadh335989hn"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
#:install-source? #f
|
||||||
|
#:import-path "github.com/openrdap/rdap/cmd/rdap"
|
||||||
#:unpack-path "github.com/openrdap/rdap"
|
#:unpack-path "github.com/openrdap/rdap"
|
||||||
#:import-path "github.com/openrdap/rdap/cmd/rdap"))
|
#:test-subdirs #~(list "../../..."))) ;test whole libary, starting from import-path
|
||||||
(propagated-inputs (list go-golang-org-x-crypto
|
(native-inputs
|
||||||
go-github-com-mitchellh-go-homedir
|
(list go-github-com-alecthomas-kingpin-v2
|
||||||
go-github-com-jarcoal-httpmock
|
go-github-com-davecgh-go-spew
|
||||||
go-github-com-davecgh-go-spew
|
go-github-com-jarcoal-httpmock
|
||||||
go-github-com-alecthomas-kingpin-v2))
|
go-github-com-mitchellh-go-homedir
|
||||||
|
go-golang-org-x-crypto))
|
||||||
(home-page "https://www.openrdap.org/")
|
(home-page "https://www.openrdap.org/")
|
||||||
(synopsis "Command line RDAP client")
|
(synopsis "Command line RDAP client")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue