~ruther/guix-config

ref: 9936658ec436723829ff52ec35044ce6551867e7 guix-config/home/modules/ruther/home/dwl/wm.scm -rw-r--r-- 3.9 KiB
9936658e — Rutherther fix: dwl substitutes 7 months ago
                                                                                
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
(define-module (ruther home dwl wm)
  #:use-module (gnu packages)
  #:use-module (gnu packages wm)
  #:use-module (gnu packages xorg)
  #:use-module (gnu packages bash)
  #:use-module (gnu packages emacs)
  #:use-module (gnu packages xdisorg)
  #:use-module (gnu packages terminals)

  #:use-module (ruther packages wayland)
  #:use-module (ruther home passwords)

  #:use-module (guix build-system trivial)

  #:use-module (guix packages)
  #:use-module (guix profiles)
  #:use-module (guix build union)
  #:use-module (guix gexp)
  #:use-module (guix utils)
  #:use-module (guix download)
  #:use-module (guix git-download))

(define-public waybar-mine
  (package
   (inherit waybar)
   (name "waybar-mine")
   (source
    (origin
     (inherit (package-source waybar))
     (sha256
      (base32 "0liiyz6212pmyhpsrb6773qf5b9b4kb76nggizygr9abfidbg5gw"))
     (patches
      (list (local-file "dwl-ipc-waybar.patch")))))))

(define-public (make-dwl-xwayland dwl)
  (package/inherit dwl
    (inputs
     (modify-inputs (package-inputs dwl)
       (append xcb-util-wm libx11 xorg-server-xwayland)))
    (arguments (substitute-keyword-arguments (package-arguments dwl)
                 ((#:make-flags original-flags)
                  #~(append '("XWAYLAND = -DXWAYLAND"
                              "XLIBS = xcb xcb-icccm")
                            #$original-flags))))))

(define-public dwl-mine-unwrapped
  (let ((base (make-dwl-xwayland dwl-0.7)))
    (package
      (inherit base)
      (name "dwl-mine-unwrapped")
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://github.com/Rutherther/dwl")
               (commit "a8e46f319f574876ce697a7097eb47a2080b1a87")))
         (sha256
          (base32 "1jkyqwnc6x48bcjcyn1ha69vwql18ib1w47jx6bxz7wg7bvidm01"))))
      (arguments (substitute-keyword-arguments (package-arguments base)
                   ((#:phases original-phases)
                    #~(modify-phases #$original-phases
                        (add-after 'unpack 'add-config
                          (lambda _
                            (copy-file #$(local-file "config.h") "config.h")
                            (substitute* "config.h"
                              (("\"foot\"") (string-append "\"" #$foot "/bin/foot\""))
                              (("\"rofi\"") (string-append "\"" #$rofi-wayland "/bin/rofi\""))
                              (("\"passmenu\"") (string-append "\"" #$password-store-wl "/bin/passmenu\""))
                              (("\"emacsclient\"") (string-append "\"" #$emacs-pgtk "/bin/emacsclient\""))))))))))))

;; Packages I use when in the WM, it's dependent on those.
(define wm-packages
  (specifications->manifest
   '("brillo"
     "wlr-randr"
     "dwlmsg"

     "password-store-wl"

     "emacs-pgtk")))

(define dwl-mine-gexp
  (with-imported-modules '((guix build utils)
                           (guix build union))
    #~(begin
        (use-modules (guix build utils)
                     (guix build union))

        (union-build #$output (list #$dwl-mine-unwrapped)
                     #:create-all-directories? #t)

        (let ((target-file (string-append #$output "/bin/dwl"))
              (wrapped-file (string-append #$output "/bin/.dwl-real"))
              (wm-profile #$(profile (content wm-packages))))
          (rename-file target-file wrapped-file)
          (call-with-output-file target-file
            (lambda (port)
              (format port
                      "#!~a~%~a~%exec -a \"$0\" \"~a\" \"$@\"~%"
                      (string-append #$bash "/bin/bash")
                      (string-append "source " wm-profile "/etc/profile")
                      (canonicalize-path wrapped-file))))
          (chmod target-file #o755)))))

(define-public dwl-mine
  (package/inherit dwl-mine-unwrapped
    (name "dwl-mine")
    (source #f)
    (build-system trivial-build-system)
    (arguments
     (list
      #:builder dwl-mine-gexp))))
Do not follow this link