From 1757abb01f255a8a3ffd1b7e0228b6da89646ad6 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Mon, 8 Mar 2021 13:59:23 +0100 Subject: gnu: docbook-xsl: Move 'use-modules' form to the top level. * gnu/packages/docbook.scm (docbook-xsl)[arguments]: Move 'use-modules' to the top level. --- gnu/packages/docbook.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'gnu/packages/docbook.scm') diff --git a/gnu/packages/docbook.scm b/gnu/packages/docbook.scm index b41659bc75..acc17f0c80 100644 --- a/gnu/packages/docbook.scm +++ b/gnu/packages/docbook.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2014 Ludovic Courtès +;;; Copyright © 2014, 2021 Ludovic Courtès ;;; Copyright © 2014 Eric Bavier ;;; Copyright © 2016 Mathieu Lirzin ;;; Copyright © 2018 Tobias Geerinckx-Rice @@ -189,9 +189,12 @@ by no means limited to these applications.) This package provides XML DTDs.") #t)))) (build-system trivial-build-system) (arguments - `(#:builder (let ((name-version (string-append ,name "-" ,version))) + `(#:builder (begin (use-modules (guix build utils)) + (define name-version + (string-append ,name "-" ,version)) + (let* ((bzip2 (assoc-ref %build-inputs "bzip2")) (xz (assoc-ref %build-inputs "xz")) (tar (assoc-ref %build-inputs "tar")) -- cgit v1.2.3