diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2019-07-01 21:03:16 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2019-07-14 11:02:23 +0300 |
commit | 041e03847beda7fd9cfb92f87db14c5b33179f29 (patch) | |
tree | f29cad20c26693b25e8b54d41f5d4f69f8463a64 /gnu/packages/enlightenment.scm | |
parent | 53f21642729e4786141c072dd835b04cb85dfe28 (diff) | |
download | patches-041e03847beda7fd9cfb92f87db14c5b33179f29.tar patches-041e03847beda7fd9cfb92f87db14c5b33179f29.tar.gz |
gnu: Add evisum.
* gnu/packages/enlightenment.scm (evisum): New variable.
Diffstat (limited to 'gnu/packages/enlightenment.scm')
-rw-r--r-- | gnu/packages/enlightenment.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm index 8bec452265..8a59bedb15 100644 --- a/gnu/packages/enlightenment.scm +++ b/gnu/packages/enlightenment.scm @@ -520,3 +520,37 @@ directories. (license (list license:bsd-2 ; Ephoto's thumbnailing code license:bsd-3)))) + +(define-public evisum + (package + (name "evisum") + (version "0.2.3") + (source + (origin + (method url-fetch) + (uri (string-append "https://download.enlightenment.org/rel/apps/" + "evisum/evisum-" version ".tar.xz")) + (sha256 + (base32 + "1lj62n896kablsl687c66yxrwajrh6ralb3y6nmcqv34pglnigca")))) + (build-system gnu-build-system) + (arguments + '(#:tests? #f ; no tests + #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))) + #:phases + (modify-phases %standard-phases + (delete 'configure) ; no configure phase + (add-after 'unpack 'set-environmental-variables + (lambda _ (setenv "CC" (which "gcc")) #t))))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("alsa-lib" ,alsa-lib) + ("efl" ,efl) + ("perl" ,perl))) + (home-page "https://www.enlightenment.org") + (synopsis "EFL process viewer") + (description + "This is a process monitor and system monitor using the +@dfn{Enlightenment Foundation Libraries} (EFL).") + (license license:bsd-2))) |