all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 83ee2932084afc15906d10f72d9e3c4dfe84b255 1165 bytes (raw)
name: gnu/packages/dvtm.scm 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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))))

debug log:

solving 83ee293 ...
found 83ee293 in https://yhetil.org/guix/1439873749-27812-2-git-send-email-leo@famulari.name/ ||
	https://yhetil.org/guix/1439851240.3286924.358695961.76470C45@webmail.messagingengine.com/

applying [1/1] https://yhetil.org/guix/1439873749-27812-2-git-send-email-leo@famulari.name/
diff --git a/gnu/packages/dvtm.scm b/gnu/packages/dvtm.scm
new file mode 100644
index 0000000..83ee293

1:14: trailing whitespace.
(define-public dvtm 
1:24: space before tab in indent.
 	  (arguments
1:31: trailing whitespace.
   (description "dvtm brings the concept of tiling window management, 
1:32: trailing whitespace.
popularized by X11-window managers like dwm to the console.  As a console window 
Checking patch gnu/packages/dvtm.scm...
Applied patch gnu/packages/dvtm.scm cleanly.
warning: 4 lines add whitespace errors.

skipping https://yhetil.org/guix/1439851240.3286924.358695961.76470C45@webmail.messagingengine.com/ for 83ee293
index at:
100644 83ee2932084afc15906d10f72d9e3c4dfe84b255	gnu/packages/dvtm.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

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.