blob: 5376756a954f03e7965f3d4a9bacd364dc5aafae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
;;; Netwrok Inspection tool packages.
;;; Copyright © 2020 Sina Mahmoodi Khorandi <s.mahmoodi@pantherx.org>
(define-module (px packages inspection)
#:use-module ((guix licenses)
#:prefix license:)
#:use-module (guix download)
#:use-module (guix packages)
#:use-module (guix build-system cmake)
#:use-module (gnu packages glib)
#:use-module (gnu packages web)
#:use-module (gnu packages linux)
#:use-module (gnu packages curl)
#:use-module (gnu packages networking)
#:use-module (guix utils)
#:use-module (gnu packages pkg-config))
(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)))
|