mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: vnstat: Use G-Expressions.
* gnu/packages/networking.scm (vnstat)[arguments]: Use G-Expressions. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
22da349023
commit
0b57ebb595
1 changed files with 10 additions and 9 deletions
|
@ -4575,15 +4575,16 @@ (define-public vnstat
|
|||
(inputs (list sqlite))
|
||||
(native-inputs (list pkg-config check))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'check 'disable-id-tests
|
||||
(lambda _
|
||||
(substitute*
|
||||
'("Makefile" "tests/vnstat_tests.c")
|
||||
(("tests/id_tests.c \\$") "\\")
|
||||
(("tests/id_tests.h h") "h")
|
||||
(("^.*id_tests.*$") "")))))))
|
||||
(list
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-before 'check 'disable-id-tests
|
||||
(lambda _
|
||||
(substitute*
|
||||
'("Makefile" "tests/vnstat_tests.c")
|
||||
(("tests/id_tests.c \\$") "\\")
|
||||
(("tests/id_tests.h h") "h")
|
||||
(("^.*id_tests.*$") "")))))))
|
||||
(home-page "https://humdi.net/vnstat/")
|
||||
(synopsis "Network traffic monitoring tool")
|
||||
(description "vnStat is a console-based network traffic monitor that keeps
|
||||
|
|
Loading…
Reference in a new issue