unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob 6aa1f93b6130e3859aa717c4b01f7474286db8ff 4062 bytes (raw)
name: gnu/packages/awesome.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016 Carlo Zancanaro <carlo@zancanaro.id.au>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages awesome)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system cmake)
  #:use-module (guix build-system glib-or-gtk)
  #:use-module (gnu packages freedesktop)
  #:use-module (gnu packages glib)
  #:use-module (gnu packages gperf)
  #:use-module (gnu packages gtk)
  #:use-module (gnu packages image)
  #:use-module (gnu packages imagemagick)
  #:use-module (gnu packages libevent)
  #:use-module (gnu packages lua)
  #:use-module (gnu packages pkg-config)
  #:use-module (gnu packages xdisorg)
  #:use-module (gnu packages xorg))

(define-public awesome
  (package
    (name "awesome")
    (version "3.4.15")
    (source
     (origin (method url-fetch)
             (uri (string-append "https://awesome.naquadah.org/download/awesome-"
                                 version ".tar.xz"))
             (sha256
              (base32
               "1m910lr7wkw2dgzmirfvz7dasfswhhccdf65l21iiciv24c3w1bb"))))
    (build-system cmake-build-system)
    (native-inputs `(("pkg-config" ,pkg-config)))
    (inputs `(("cairo" ,cairo)
              ("dbus" ,dbus)
              ("gdk-pixbuf" ,gdk-pixbuf)
              ("glib" ,glib)
              ("gperf" ,gperf)
              ("imlib2" ,imlib2)
              ("libev" ,libev)
              ("libxcb" ,libxcb)
              ("libxcursor" ,libxcursor)
              ("libxdg-basedir" ,libxdg-basedir)
              ("lua" ,lua-5.1)
              ("pango" ,pango)
              ("startup-notification" ,startup-notification)
              ("xcb-util" ,xcb-util)
              ("xcb-util-cursor" ,xcb-util-cursor)
              ("xcb-util-image" ,xcb-util-image)
              ("xcb-util-keysyms" ,xcb-util-keysyms)
              ("xcb-util-renderutil" ,xcb-util-renderutil)
              ("xcb-util-wm" ,xcb-util-wm)
              ("imagemagick" ,imagemagick)))
    (arguments `(#:phases (modify-phases %standard-phases
                            (replace 'check
                              (lambda* _
                                (zero? (system* "../build/awesome" "-v")))))))
    (synopsis "Highly configurable, next generation framework window manager
for X")
    (description
     "awesome is a window manager for X.  It manages windows in different
layouts, like floating or tiled.  Any layout can be applied dynamically,
optimizing the environment for the application in use and the task currently
being performed.

In a tiled layout, windows are managed in a master and stacking area.  The
master area contains the windows which currently need the most attention,
whereas the stacking area contains all other windows.  In a floating layout
windows can be resized and moved freely.  Dialog windows are always managed as
floating, regardless of the layout currently applied.  The spiral and dwindle
layouts are special cases of the tiled layout where the stacking area is
arranged in a spiral for the former or as a rectangular fractal for the later.

Windows are grouped by tags in awesome.  Each window can be tagged with one or
more tags.  Selecting certain tags displays all windows with these tags.")
    (license license:gpl2)
    (home-page "https://awesome.naquadah.org/")))

debug log:

solving 6aa1f93 ...
found 6aa1f93 in https://yhetil.org/guix-devel/1465778333-19689-1-git-send-email-carlo@zancanaro.id.au/ ||
	https://yhetil.org/guix-devel/1465776755-16444-1-git-send-email-carlo@zancanaro.id.au/

applying [1/1] https://yhetil.org/guix-devel/1465778333-19689-1-git-send-email-carlo@zancanaro.id.au/
diff --git a/gnu/packages/awesome.scm b/gnu/packages/awesome.scm
new file mode 100644
index 0000000..6aa1f93

Checking patch gnu/packages/awesome.scm...
Applied patch gnu/packages/awesome.scm cleanly.

skipping https://yhetil.org/guix-devel/1465776755-16444-1-git-send-email-carlo@zancanaro.id.au/ for 6aa1f93
index at:
100644 6aa1f93b6130e3859aa717c4b01f7474286db8ff	gnu/packages/awesome.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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).