-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* gnu/packages/man.scm (mandoc)[native-inputs]: Add libc-utf8-locales-for-target. Change-Id: I021bfc42584ab9df216084778f4315a7a4b9fa7b
- Loading branch information
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
;;; Copyright © 2018, 2019, 2022 Marius Bakke <[email protected]> | ||
;;; Copyright © 2020 Vincent Legoll <[email protected]> | ||
;;; Copyright © 2021 Guillaume Le Vaillant <[email protected]> | ||
;;; Copyright © 2021 Jan (janneke) Nieuwenhuizen <[email protected]> | ||
;;; Copyright © 2021, 2024 Janneke Nieuwenhuizen <[email protected]> | ||
;;; Copyright © 2022, 2024 Maxim Cournoyer <[email protected]> | ||
;;; Copyright © 2022 Imran Iqbal <[email protected]> | ||
;;; | ||
|
@@ -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 | ||
|