summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-08 23:21:54 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-08 23:21:54 +0100
commitd9c6f8d2e09816ff602f4e426433be91d294209e (patch)
tree34a974b7dbbabf51086c185789ee44270a5b657f /gnu
parent9ee7fe20c9ef05e741cfc76f91544e291ac1d89f (diff)
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
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/networking.scm19
1 files changed, 11 insertions, 8 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 7eaffc8e063..2ee63785546 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -5225,21 +5225,24 @@ recording packets that are dropped by the kernel. It provides the commands
(origin
(method git-fetch)
(uri (git-reference
- (url "https://github.com/openrdap/rdap")
- (commit (string-append "v" version))))
+ (url "https://github.com/openrdap/rdap")
+ (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1w3kwxh3hvkp5x1m6i4ijydmpfpibgf9jkviqrvpcadh335989hn"))))
(build-system go-build-system)
(arguments
(list
+ #:install-source? #f
+ #:import-path "github.com/openrdap/rdap/cmd/rdap"
#:unpack-path "github.com/openrdap/rdap"
- #:import-path "github.com/openrdap/rdap/cmd/rdap"))
- (propagated-inputs (list go-golang-org-x-crypto
- go-github-com-mitchellh-go-homedir
- go-github-com-jarcoal-httpmock
- go-github-com-davecgh-go-spew
- go-github-com-alecthomas-kingpin-v2))
+ #:test-subdirs #~(list "../../..."))) ;test whole libary, starting from import-path
+ (native-inputs
+ (list go-github-com-alecthomas-kingpin-v2
+ go-github-com-davecgh-go-spew
+ go-github-com-jarcoal-httpmock
+ go-github-com-mitchellh-go-homedir
+ go-golang-org-x-crypto))
(home-page "https://www.openrdap.org/")
(synopsis "Command line RDAP client")
(description