aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/fvwm.scm
blob: 386edba5911ceb85eb4d4745cb7d957d463b2363 (plain)
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
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2017 Nils Gillmann <ng0@n0.is>
;;;
;;; 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 fvwm)
  #:use-module ((guix licenses) #:select (gpl2+))
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (gnu packages fribidi)
  #:use-module (gnu packages gnome)
  #:use-module (gnu packages image)
  #:use-module (gnu packages perl)
  #:use-module (gnu packages pkg-config)
  #:use-module (gnu packages readline)
  #:use-module (gnu packages xml)
  #:use-module (gnu packages xorg))

(define-public fvwm
  (package
    (name "fvwm")
    (version "2.6.8")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://github.com/fvwmorg/fvwm/releases/download/"
                    version "/" name "-" version ".tar.gz"))
              (sha256
               (base32
                "0hgkkdzcqjnaabvv9cnh0bz90nnjskbhjg9qnzpi2x0mbliwjdpv"))))
    (build-system gnu-build-system)
    (arguments
     `(#:phases
       (modify-phases %standard-phases
         (add-after 'install 'install-xsession
           (lambda* (#:key outputs #:allow-other-keys)
             (let* ((out (assoc-ref outputs "out"))
                    (xsessions (string-append out "/share/xsessions")))
               (mkdir-p xsessions)
               (with-output-to-file
                   (string-append xsessions "/fvwm2.desktop")
                 (lambda _
                   (format #t
                           "[Desktop Entry]~@
                    Name=FVWM~@
                    Comment=FVWM~@
                    Exec=~a/bin/fvwm~@
                    TryExec=~@*~a/bin/fvwm~@
                    Icon=~@
                    Type=Application~%"
                           out))))
             #t)))))
    (native-inputs
     `(("perl" ,perl)
       ("pkg-config" ,pkg-config)
       ("xsltproc" ,libxslt)))
    (inputs
     `(("fribidi" ,fribidi)
       ("libpng" ,libpng)
       ("librsvg" ,librsvg)
       ("libxcursor" ,libxcursor)
       ("libxext" ,libxext)
       ("libxft" ,libxft)
       ("libxinerama" ,libxinerama)
       ("libxpm" ,libxpm)
       ("libxt" ,libxt)
       ("readline" ,readline)))
    (synopsis "Virtual window manager for X11")
    (description
     "FVWM is an extremely powerful ICCCM-compliant multiple virtual desktop
window manager for the X Window system.")
    (home-page "http://www.fvwm.org/")
    (license gpl2+)))

© 2015 - 2026 Jakob L. Kreuze

class="nf">ex ((reportable-condition? ex) (values->list (format-error-response ex)))) (fail-when-ip-blacklisted originating-ip) (values->list (((if (%debug-enabled) identity rate-limit-wrap) (match (cons (request-method request) endpoint) (('GET "apps" "comment-form" _) get-comment-form) ('(GET "api" "challenge" "proof-of-work") make-pow-challenge!) ('(GET "api" "challenge" "captcha") make-captcha-challenge!) ('(GET "api" "comments") get-comments) (('POST "api" "comment") put-comment) (('POST "api" "comment" "react") put-reaction) (('GET "apps" "gallery") (clearnet-only get-gallery)) (('GET "apps" "rsvp" "event-info") (clearnet-only get-event-info)) (('POST "apps" "rsvp") (clearnet-only post-event-rsvp)) (_ (lambda (. args) (not-found request))))) request body)))))) (define (main-request-handler request body) "Server entry-point; parse `request' and defer to routing system." (define (wrap-response response) ;; This is either a response, or an alist of headers. The latter case is ;; simple to handle, but the former requires us to do a (rather unweildy) ;; copy of the response to inject our headers. (if (response? response) (build-response #:version (response-version response) #:code (response-code response) #:reason-phrase (response-reason-phrase response) #:headers (cons '(Access-Control-Allow-Origin . "*") (response-headers response)) #:port (response-port response) #:validate-headers? #t) (cons '(Access-Control-Allow-Origin . "*") response))) (let* ((path-encoded (uri-path (request-uri request))) (path (split-and-decode-uri-path path-encoded))) (define-values (response resp-body) (handle-api-request request body path)) (values (wrap-response response) resp-body))) (format #t "Server started.~%") (run-server main-request-handler 'http `(#:addr ,INADDR_ANY #:port ,(%api-server-port)))

© 2015 - 2026 Jakob L. Kreuze