(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))))