[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 1/2 v3] gnu: Add htop.
From: |
Cyril Roelandt |
Subject: |
[PATCH 1/2 v3] gnu: Add htop. |
Date: |
Sun, 1 Sep 2013 20:03:50 +0200 |
* gnu/packages/sysutils.scm (htop): New variable.
---
gnu/packages/system.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/system.scm b/gnu/packages/system.scm
index e326e49..fb364f1 100644
--- a/gnu/packages/system.scm
+++ b/gnu/packages/system.scm
@@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012, 2013 Ludovic Courtès <address@hidden>
+;;; Copyright © 2013 Cyril Roelandt <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -25,6 +26,27 @@
#:use-module (gnu packages ncurses)
#:use-module (gnu packages linux))
+(define-public htop
+ (package
+ (name "htop")
+ (version "1.0.2")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://sourceforge/htop/"
+ version "/htop-" version ".tar.gz"))
+ (sha256
+ (base32
+ "18fqrhvnm7h4c3939av8lpiwrwxbyw6hcly0jvq0vkjf0ixnaq7f"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("ncurses" ,ncurses)))
+ (home-page "http://htop.sourceforge.net/")
+ (synopsis "Interactive process viewer")
+ (description
+ "This is htop, an interactive process viewer. It is a text-mode
+application (for console or X terminals) and requires ncurses.")
+ (license gpl2)))
+
(define-public pies
(package
(name "pies")
--
1.7.10.4
- [PATCH 1/2 v3] gnu: Add htop.,
Cyril Roelandt <=