summaryrefslogtreecommitdiff
path: root/.config/guix/modules/packages/bdwm.scm
blob: e82355eab0b4fe252415500c91f329f2b7f3d777 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(define-module (packages bdwm)
  #:use-module (gnu packages)
  #:use-module (gnu packages suckless)
  #:use-module (guix packages)
  #:use-module (guix gexp)
  #:export (bdwm))

;;; Commentary:
;;; my custom build of dwm
;;; this package is no longer in use
;;; Code:

(define bdwm
  (package
    (inherit dwm)
    (name "bdwm")
    (inputs (modify-inputs (package-inputs dwm)))
    (source (local-file "dwm" #:recursive? #t))))

;;; bdwm.scm ends here