Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Guix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ogs
inf
Guix
Commits
765973cd
Commit
765973cd
authored
9 years ago
by
Leo Famulari
Browse files
Options
Downloads
Patches
Plain Diff
gnu: Add iftop.
* gnu/packages/admin.scm (iftop): New variable.
parent
c2af0260
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gnu/packages/admin.scm
+23
-0
23 additions, 0 deletions
gnu/packages/admin.scm
with
23 additions
and
0 deletions
gnu/packages/admin.scm
+
23
−
0
View file @
765973cd
...
...
@@ -6,6 +6,7 @@
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
;;; Copyright © 2015 Alex Sassmannshausen <alex.sassmannshausen@gmail.com>
;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
;;;
;;; This file is part of GNU Guix.
;;;
...
...
@@ -1377,3 +1378,25 @@ (define-public autojump
you use the most from the command line and allows you to \"jump\" to
frequently used directories by typing only a small pattern."
)
(
license
license:gpl3+
)))
(
define-public
iftop
(
package
(
name
"iftop"
)
(
version
"1.0pre4"
)
(
source
(
origin
(
method
url-fetch
)
(
uri
(
string-append
"http://www.ex-parrot.com/~pdw/iftop/download"
"/iftop-"
version
".tar.gz"
))
(
sha256
(
base32
"15sgkdyijb7vbxpxjavh5qm5nvyii3fqcg9mzvw7fx8s6zmfwczp"
))))
(
build-system
gnu-build-system
)
(
inputs
`
((
"libpcap"
,
libpcap
)
(
"ncurses"
,
ncurses
)))
(
synopsis
"Monitor network usage"
)
(
description
"Iftop does for network usage what @command{top} does
for CPU usage. It listens to network traffic on a named interface and
displays a table of current bandwidth usage by pairs of hosts."
)
(
home-page
"http://www.ex-parrot.com/~pdw/iftop/"
)
(
license
license:gpl3
)))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment