summary refs log tree commit diff
diff options
context:
space:
mode:
authorArun Isaac2025-11-17 21:21:33 +0000
committerArun Isaac2025-11-17 21:27:11 +0000
commitaa44d7672a917acd9d8cf33bfc93b6b8a4d69823 (patch)
tree72eb4f62c7f80c96d8f2057377d4fae24ce35d71
parent980bc6e972976a15ef64ed333451971c103941f4 (diff)
downloadrun64-aa44d7672a917acd9d8cf33bfc93b6b8a4d69823.tar.gz
run64-aa44d7672a917acd9d8cf33bfc93b6b8a4d69823.tar.lz
run64-aa44d7672a917acd9d8cf33bfc93b6b8a4d69823.zip
guix: Depend on lzip.
-rw-r--r--.guix/run64-package.scm4
1 files changed, 4 insertions, 0 deletions
diff --git a/.guix/run64-package.scm b/.guix/run64-package.scm
index e3519da..326ecff 100644
--- a/.guix/run64-package.scm
+++ b/.guix/run64-package.scm
@@ -17,6 +17,7 @@
 ;;; along with run64.  If not, see <https://www.gnu.org/licenses/>.
 
 (define-module (run64-package)
+  #:use-module ((gnu packages compression) #:select (lzip))
   #:use-module (guix build-system gnu)
   #:use-module (guix gexp)
   #:use-module (guix git-download)
@@ -39,6 +40,9 @@
            #:phases
            #~(modify-phases %standard-phases
                (delete 'configure))))
+    (native-inputs
+     (list lzip))  ;; Required when building with release tarball using
+                   ;; --with-source
     (home-page "https://run64.systemreboot.net")
     (synopsis "SRFI-64 test runner for Scheme")
     (description "run64 is a SRFI-64 test runner for Scheme.")