diff options
author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2024-01-24 16:47:14 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:44:43 +0200 |
commit | 8ff0ee8ed6deef04d5706a7f243e7c0248a2e25b (patch) | |
tree | bc8bb84cd22c55ce5e50a465d04c892a3b4195a9 | |
parent | b0ce5d6095b747c07e2894689af7647d2bf2771b (diff) | |
download | guix-8ff0ee8ed6deef04d5706a7f243e7c0248a2e25b.tar guix-8ff0ee8ed6deef04d5706a7f243e7c0248a2e25b.tar.gz |
gnu: mandoc: Resurrect build.
* gnu/packages/man.scm (mandoc)[native-inputs]: Add
libc-utf8-locales-for-target.
Change-Id: I021bfc42584ab9df216084778f4315a7a4b9fa7b
-rw-r--r-- | gnu/packages/man.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/man.scm b/gnu/packages/man.scm index f4b995691c..8a0d905aeb 100644 --- a/gnu/packages/man.scm +++ b/gnu/packages/man.scm @@ -9,7 +9,7 @@ ;;; Copyright © 2018, 2019, 2022 Marius Bakke <marius@gnu.org> ;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com> ;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net> -;;; Copyright © 2021 Jan (janneke) Nieuwenhuizen <janneke@gnu.org> +;;; Copyright © 2021, 2024 Janneke Nieuwenhuizen <janneke@gnu.org> ;;; Copyright © 2022, 2024 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2022 Imran Iqbal <imran@imraniqbal.org> ;;; @@ -37,6 +37,7 @@ #:use-module (guix build-system gnu) #:use-module (guix build-system ruby) #:use-module (guix utils) + #:use-module (gnu packages base) #:use-module (gnu packages compression) #:use-module (gnu packages dbm) #:use-module (gnu packages flex) @@ -294,7 +295,7 @@ pages into HTML format.") (("^PREFIX=.*") (string-append "PREFIX=" (assoc-ref outputs "out") "\n")))))))) - (native-inputs (list perl)) ;used to run tests + (native-inputs (list (libc-utf8-locales-for-target) perl)) ;used to run tests (inputs (list zlib)) (native-search-paths (list (search-path-specification |