From b960c7bfe9715e895bbe99848bfe936efe86b7e3 Mon Sep 17 00:00:00 2001 From: Vivianne Langdon Date: Mon, 4 Mar 2024 18:39:29 -0500 Subject: [PATCH] hopefully fix issue with termenv package --- .guix/modules/termenv-package.scm | 70 +++++++++++++++---------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/.guix/modules/termenv-package.scm b/.guix/modules/termenv-package.scm index 63f3d8e..2ef9edb 100644 --- a/.guix/modules/termenv-package.scm +++ b/.guix/modules/termenv-package.scm @@ -6,7 +6,7 @@ #:use-module (gnu packages pkg-config) #:use-module (gnu packages texinfo) #:use-module (guix build-system gnu) - #:use-module (guix download) + #:use-module (guix git-download) #:use-module (guix gexp) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) @@ -14,38 +14,38 @@ (define-public guile-termenv (package - (name "guile-termenv") - (version "0.1") - (source) + (name "guile-termenv") + (version "0.1") + (source (origin - (method git-fetch) - (uri (git-reference - (url "https://git.solarpunk.moe/solarpunk-guile/guile-termenv.git") - (commit "v0.1") - (sha256 - (base32 - "1cs5vs3inc2a43hijgw9krg0a10v060hmdynkmrzm4kbnig5qraw")))))) - (build-system gnu-build-system) - (arguments - (list - #:make-flags - #~(list "GUILE_AUTO_COMPILE=0") - #:phases - #~(modify-phases %standard-phases - (add-before 'bootstrap 'hall - (lambda _ - (system* "hall" "build" "-x"))) - (replace 'bootstrap - (lambda _ - (system* "autoreconf" "-vif")))))) - (native-inputs (list autoconf - automake - guile-hall - pkg-config - texinfo)) - (inputs (list guile-3.0)) - (synopsis "Guile port of termenv") - (description - "A library to provide easy control of terminals from Guile using terminal control codes.") - (home-page "https://git.solarpunk.moe/solarpunk-guile/guile-termenv") - (license license:gpl3+))) + (method git-fetch) + (uri (git-reference + (url "https://git.solarpunk.moe/solarpunk-guile/guile-termenv.git") + (commit "v0.1"))) + (sha256 + (base32 + "1cs5vs3inc2a43hijgw9krg0a10v060hmdynkmrzm4kbnig5qraw")))) + (build-system gnu-build-system) + (arguments + (list + #:make-flags + #~(list "GUILE_AUTO_COMPILE=0") + #:phases + #~(modify-phases %standard-phases + (add-before 'bootstrap 'hall + (lambda _ + (system* "hall" "build" "-x"))) + (replace 'bootstrap + (lambda _ + (system* "autoreconf" "-vif")))))) + (native-inputs (list autoconf + automake + guile-hall + pkg-config + texinfo)) + (inputs (list guile-3.0)) + (synopsis "Guile port of termenv") + (description + "A library to provide easy control of terminals from Guile using terminal control codes.") + (home-page "https://git.solarpunk.moe/solarpunk-guile/guile-termenv") + (license license:gpl3+)))