diff options
author | Franz Geffke <franz@pantherx.org> | 2024-03-30 12:39:20 +0000 |
---|---|---|
committer | Franz Geffke <franz@pantherx.org> | 2024-03-30 12:39:20 +0000 |
commit | f23f6e0f711bcf8a1d1d4573bc35ca19c2941a37 (patch) | |
tree | f57f784ab8daed09c2be51aa3e723e09affe6cb8 /px/packages/networking.scm | |
parent | 3db3382b690add4e60707a7b07113d2e32ec9b63 (diff) |
px-network-inspection: move to networking module
Diffstat (limited to 'px/packages/networking.scm')
-rw-r--r-- | px/packages/networking.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/px/packages/networking.scm b/px/packages/networking.scm index 0c3d728..403669b 100644 --- a/px/packages/networking.scm +++ b/px/packages/networking.scm @@ -162,3 +162,29 @@ offering a simple API to solve common recurring messaging problems, such as publish/subscribe, RPC-style request/reply, or service discovery.") (home-page "https://nng.nanomsg.org/") (license license:expat))) + +(define-public px-network-inspection + (package + (name "px-network-inspection") + (version "0.0.15") + (source + (origin + (method url-fetch) + (uri (string-append + "https://source.pantherx.org/px-network-inspection_" version + ".tgz")) + (sha256 + (base32 "0fzcy9f61qz0zi8chb6y86qfsjyn510fkxkxcw66rgxji76b1qx1")))) + (build-system cmake-build-system) + (arguments + `(#:tests? #f)) + (inputs `(("glib" ,glib) + ("curl" ,curl) + ("fping" ,fping) + ("json-c" ,json-c) + ("libnl" ,libnl))) + (native-inputs `(("pkg-config" ,pkg-config))) + (home-page "https://www.pantherx.org/") + (synopsis "PantherX Netwrok Inspection") + (description "This package provides network inspection utility tool") + (license license:expat))) |