summaryrefslogtreecommitdiff
path: root/distro
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-12-04 00:17:49 +0100
committerLudovic Courtès <ludo@gnu.org>2012-12-04 00:17:49 +0100
commit686f14e8a45b06e0b27cc6100b60a475e6970fe6 (patch)
treea7e2b5325e93616363817e1a990ca89fa38f733a /distro
parent7eba5e6361b637a4c8aecbb13644f573a845732b (diff)
distro: Add psmisc.
* distro/packages/linux.scm (psmisc): New variable.
Diffstat (limited to 'distro')
-rw-r--r--distro/packages/linux.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/distro/packages/linux.scm b/distro/packages/linux.scm
index 54a0606a11b..3048181ecd2 100644
--- a/distro/packages/linux.scm
+++ b/distro/packages/linux.scm
@@ -21,6 +21,7 @@
21 #:use-module (guix download) 21 #:use-module (guix download)
22 #:use-module (distro packages flex) 22 #:use-module (distro packages flex)
23 #:use-module (distro packages perl) 23 #:use-module (distro packages perl)
24 #:use-module (distro packages ncurses)
24 #:use-module (guix build-system gnu)) 25 #:use-module (guix build-system gnu))
25 26
26(define-public linux-libre-headers 27(define-public linux-libre-headers
@@ -104,3 +105,26 @@ Pluggable authentication modules are small shared object files that can
104be used through the PAM API to perform tasks, like authenticating a user 105be used through the PAM API to perform tasks, like authenticating a user
105at login. Local and dynamic reconfiguration are its key features") 106at login. Local and dynamic reconfiguration are its key features")
106 (license "BSD"))) 107 (license "BSD")))
108
109(define-public psmisc
110 (package
111 (name "psmisc")
112 (version "22.20")
113 (source
114 (origin
115 (method url-fetch)
116 (uri (string-append "mirror://sourceforge/psmisc/psmisc/psmisc-"
117 version ".tar.gz"))
118 (sha256
119 (base32
120 "052mfraykmxnavpi8s78aljx8w87hyvpx8mvzsgpjsjz73i28wmi"))))
121 (build-system gnu-build-system)
122 (inputs `(("ncurses" ,ncurses)))
123 (home-page "http://psmisc.sourceforge.net/")
124 (synopsis
125 "set of utilities that use the proc filesystem, such as fuser, killall, and pstree")
126 (description
127 "This PSmisc package is a set of some small useful utilities that
128use the proc filesystem. We're not about changing the world, but
129providing the system administrator with some help in common tasks.")
130 (license "GPLv2+")))