all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Leo Famulari <leo@famulari.name>
To: guix-devel@gnu.org
Cc: Leo Famulari <leo@famulari.name>
Subject: [PATCH 1/1] gnu: Add dvtm.
Date: Tue, 18 Aug 2015 00:55:49 -0400	[thread overview]
Message-ID: <1439873749-27812-2-git-send-email-leo@famulari.name> (raw)
In-Reply-To: <1439873749-27812-1-git-send-email-leo@famulari.name>

* 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

  reply	other threads:[~2015-08-18  4:55 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-18  4:55 [PATCH 0/1] Adding new package: dvtm Leo Famulari
2015-08-18  4:55 ` Leo Famulari [this message]
2015-08-21 22:35   ` [PATCH 1/1] gnu: Add dvtm Mark H Weaver
2015-08-22  0:46     ` Leo Famulari

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1439873749-27812-2-git-send-email-leo@famulari.name \
    --to=leo@famulari.name \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.