Ivan Polyakov
3 years ago
3 changed files with 40 additions and 4 deletions
@ -0,0 +1,24 @@
@@ -0,0 +1,24 @@
|
||||
;;; 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 |
Loading…
Reference in new issue