--- /dev/null
+;; Copyright (c) 2022 Jakub Czajka <jakub@ekhem.eu.org>
+;; License: GPL-3.0 or later.
+;;
+;; suckless.scm - packages with custom versions of suckless software. Source code
+;; is obtainted from self-hosted repositories.
+
+(define-module (conf home suckless)
+ #:use-module (conf common suckless)
+ #:use-module (gnu packages suckless)
+ #:use-module (guix git-download)
+ #:use-module (guix packages)
+ #:export (st-libxft-bgra))
+
+(define st-libxft-bgra
+ (package
+ (inherit st)
+ (name "st-bgra")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.ekhem.eu.org/st.git")
+ (commit "8d6284529f38224a8f66fe2469669331cdd4af2f")))
+ (sha256
+ (base32
+ "1l0ch3sm3nwp3q3zkrhbwn45q5f3w8bzl9j7nvmsjmwd1nl4jfxh"))))
+ (inputs
+ (modify-inputs (package-inputs st)
+ (delete "libxft")
+ (append libxft-bgra)))))