You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
660 B
24 lines
660 B
;;; 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
|
|
|