;;; st - simple terminal ;;; See LICENSE file for copyright and license details. (use-modules (guix packages) (guix download) (guix git-download) (guix gexp) (guix build-system gnu) (gnu packages suckless)) (define %source-dir (dirname (current-filename))) (define vilor-st (package (inherit st) (name "vilor-st") (version "git") (source (local-file %source-dir #:recursive? #t #:select? (git-predicate %source-dir))) (home-page "https://notabug.org/vilor/st") (synopsis "Patched and configured st 0.8.5"))) vilor-st