Merge pull request 'Fix indentation' (#3) from juliana/guile-termenv:fix-indentation into main

Reviewed-on: vv/guile-termenv#3
This commit is contained in:
Vivianne 2024-02-27 12:38:14 +00:00
commit 0e0c797a73
1 changed files with 34 additions and 34 deletions

View File

@ -12,38 +12,38 @@
(srfi srfi-1)) (srfi srfi-1))
(package (package
(name "guile-termenv") (name "guile-termenv")
(version "0.1") (version "0.1")
(source (source
(local-file (local-file
(dirname (current-filename)) (dirname (current-filename))
#:recursive? #t #:recursive? #t
#:select? (lambda (file stat) #:select? (lambda (file stat)
(not (any (lambda (my-string) (not (any (lambda (my-string)
(string-contains file my-string)) (string-contains file my-string))
(list ".git" ".dir-locals.el" "guix.scm")))))) (list ".git" ".dir-locals.el" "guix.scm"))))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
(list (list
#:make-flags #:make-flags
#~(list "GUILE_AUTO_COMPILE=0") #~(list "GUILE_AUTO_COMPILE=0")
#:phases #:phases
#~(modify-phases %standard-phases #~(modify-phases %standard-phases
(add-before 'bootstrap 'hall (add-before 'bootstrap 'hall
(lambda _ (lambda _
(system* "hall" "build" "-x"))) (system* "hall" "build" "-x")))
(replace 'bootstrap (replace 'bootstrap
(lambda _ (lambda _
(system* "autoreconf" "-vif")))))) (system* "autoreconf" "-vif"))))))
(native-inputs (list autoconf (native-inputs (list autoconf
automake automake
guile-hall guile-hall
pkg-config pkg-config
texinfo)) texinfo))
(inputs (list guile-3.0)) (inputs (list guile-3.0))
(synopsis "Guile port of termenv") (synopsis "Guile port of termenv")
(description (description
"A library to provide easy control of terminals from Guile using terminal control codes.") "A library to provide easy control of terminals from Guile using terminal control codes.")
(home-page "https://git.solarpunk.moe/vv/guile-termenv") (home-page "https://git.solarpunk.moe/vv/guile-termenv")
(license license:gpl3+)) (license license:gpl3+))