mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
distro: Add psmisc.
* distro/packages/linux.scm (psmisc): New variable.
This commit is contained in:
parent
7eba5e6361
commit
686f14e8a4
1 changed files with 24 additions and 0 deletions
|
@ -21,6 +21,7 @@ (define-module (distro packages linux)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (distro packages flex)
|
#:use-module (distro packages flex)
|
||||||
#:use-module (distro packages perl)
|
#:use-module (distro packages perl)
|
||||||
|
#:use-module (distro packages ncurses)
|
||||||
#:use-module (guix build-system gnu))
|
#:use-module (guix build-system gnu))
|
||||||
|
|
||||||
(define-public linux-libre-headers
|
(define-public linux-libre-headers
|
||||||
|
@ -104,3 +105,26 @@ (define-public linux-pam
|
||||||
be used through the PAM API to perform tasks, like authenticating a user
|
be used through the PAM API to perform tasks, like authenticating a user
|
||||||
at login. Local and dynamic reconfiguration are its key features")
|
at login. Local and dynamic reconfiguration are its key features")
|
||||||
(license "BSD")))
|
(license "BSD")))
|
||||||
|
|
||||||
|
(define-public psmisc
|
||||||
|
(package
|
||||||
|
(name "psmisc")
|
||||||
|
(version "22.20")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://sourceforge/psmisc/psmisc/psmisc-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"052mfraykmxnavpi8s78aljx8w87hyvpx8mvzsgpjsjz73i28wmi"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(inputs `(("ncurses" ,ncurses)))
|
||||||
|
(home-page "http://psmisc.sourceforge.net/")
|
||||||
|
(synopsis
|
||||||
|
"set of utilities that use the proc filesystem, such as fuser, killall, and pstree")
|
||||||
|
(description
|
||||||
|
"This PSmisc package is a set of some small useful utilities that
|
||||||
|
use the proc filesystem. We're not about changing the world, but
|
||||||
|
providing the system administrator with some help in common tasks.")
|
||||||
|
(license "GPLv2+")))
|
||||||
|
|
Loading…
Reference in a new issue