From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: [PATCH 1/1] gnu: Add dvtm. Date: Tue, 18 Aug 2015 00:55:49 -0400 Message-ID: <1439873749-27812-2-git-send-email-leo@famulari.name> References: <1439873749-27812-1-git-send-email-leo@famulari.name> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47051) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZRYvc-0007En-EK for guix-devel@gnu.org; Tue, 18 Aug 2015 00:55:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZRYvZ-0006uX-7h for guix-devel@gnu.org; Tue, 18 Aug 2015 00:55:16 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:51822) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZRYvZ-0006uT-3i for guix-devel@gnu.org; Tue, 18 Aug 2015 00:55:13 -0400 In-Reply-To: <1439873749-27812-1-git-send-email-leo@famulari.name> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org Cc: Leo Famulari * gnu/packages/dvtm.scm: New file. * gnu-system.am: Add it. --- gnu-system.am | 1 + gnu/packages/dvtm.scm | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 gnu/packages/dvtm.scm diff --git a/gnu-system.am b/gnu-system.am index 9f46f7b..96f6e66 100644 --- a/gnu-system.am +++ b/gnu-system.am @@ -87,6 +87,7 @@ GNU_SYSTEM_MODULES = \ gnu/packages/docbook.scm \ gnu/packages/doxygen.scm \ gnu/packages/dunst.scm \ + gnu/packages/dvtm.scm \ gnu/packages/ebook.scm \ gnu/packages/ed.scm \ gnu/packages/elf.scm \ diff --git a/gnu/packages/dvtm.scm b/gnu/packages/dvtm.scm new file mode 100644 index 0000000..83ee293 --- /dev/null +++ b/gnu/packages/dvtm.scm @@ -0,0 +1,29 @@ +(define-module (gnu packages dvtm) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix build-system gnu) + #:use-module (guix licenses) + #:use-module (gnu packages ncurses)) + +(define-public dvtm + (package + (name "dvtm") + (version "0.14") + (source (origin + (method url-fetch) + (uri (string-append "http://www.brain-dump.org/projects/dvtm/dvtm-" version".tar.gz")) + (sha256 + (base32 "0ykl8dz7ivjgdzhmhlgidnp2ffh5gxq9lbg276w7iid4z10v76wa")))) + (build-system gnu-build-system) + (arguments + `(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))) + #:phases (alist-replace 'configure (lambda _ (setenv "CC" (which "gcc"))) %standard-phases) + #:tests? #f)) + + (inputs `(("ncurses" ,ncurses))) + (synopsis "Tiling window management for the console") + (description "dvtm brings the concept of tiling window management, +popularized by X11-window managers like dwm to the console. As a console window +manager it tries to make it easy to work with multiple console based programs. ") + (home-page "http://www.brain-dump.org/projects/dvtm/") + (license (list isc x11)))) -- 2.4.3