diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 17:18:24 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 17:48:25 +0100 |
| commit | 8394619baceb118df92e355377fd543bb1aa501a (patch) | |
| tree | 504f07c2a9f88596a305b59ef45f941062426a52 /gnu/packages/gettext.scm | |
| parent | aca2defe0172868295941fd9f0e97886f6e9b2d4 (diff) | |
gnu: Simplify package inputs.
This commit was obtained by running:
./pre-inst-env guix style
without any additional argument.
Diffstat (limited to 'gnu/packages/gettext.scm')
| -rw-r--r-- | gnu/packages/gettext.scm | 44 |
1 files changed, 21 insertions, 23 deletions
diff --git a/gnu/packages/gettext.scm b/gnu/packages/gettext.scm index a71af5bbe3c..e20d4d14274 100644 --- a/gnu/packages/gettext.scm +++ b/gnu/packages/gettext.scm | |||
| @@ -64,13 +64,12 @@ | |||
| 64 | (outputs '("out" | 64 | (outputs '("out" |
| 65 | "doc")) ;9 MiB of HTML | 65 | "doc")) ;9 MiB of HTML |
| 66 | (inputs | 66 | (inputs |
| 67 | `(("libunistring" ,libunistring) | 67 | (list libunistring |
| 68 | ("libxml2" ,libxml2) | 68 | libxml2 |
| 69 | 69 | ;; TODO: ncurses is only needed for the 'libtextstyle' library. | |
| 70 | ;; TODO: ncurses is only needed for the 'libtextstyle' library. | 70 | ;; The next version of gettext can use a separate libtextstyle, |
| 71 | ;; The next version of gettext can use a separate libtextstyle, | 71 | ;; but for now we include it here in 'gettext-minimal'. |
| 72 | ;; but for now we include it here in 'gettext-minimal'. | 72 | ncurses)) |
| 73 | ("ncurses" ,ncurses))) | ||
| 74 | (arguments | 73 | (arguments |
| 75 | `(#:configure-flags '("--with-included-libunistring=no" | 74 | `(#:configure-flags '("--with-included-libunistring=no" |
| 76 | "--with-included-libxml=no") | 75 | "--with-included-libxml=no") |
| @@ -199,22 +198,21 @@ color, font attributes (weight, posture), or underlining.") | |||
| 199 | (base32 "0kgbm0af7jwpfspa2xxiy9nc2l1r2s1rhbhz4r229zcqv49ak6sq")))) | 198 | (base32 "0kgbm0af7jwpfspa2xxiy9nc2l1r2s1rhbhz4r229zcqv49ak6sq")))) |
| 200 | (build-system python-build-system) | 199 | (build-system python-build-system) |
| 201 | (native-inputs | 200 | (native-inputs |
| 202 | `(("python-bump2version" ,python-bump2version) | 201 | (list python-bump2version |
| 203 | ("python-flake8" ,python-flake8) | 202 | python-flake8 |
| 204 | ("python-flake8-implicit-str-concat" ,python-flake8-implicit-str-concat) | 203 | python-flake8-implicit-str-concat |
| 205 | ("python-flake8-print" ,python-flake8-print) | 204 | python-flake8-print |
| 206 | ("python-isort" ,python-isort) | 205 | python-isort |
| 207 | ("python-pre-commit" ,python-pre-commit) | 206 | python-pre-commit |
| 208 | ("python-pytest" ,python-pytest) | 207 | python-pytest |
| 209 | ("python-pytest-cov" ,python-pytest-cov) | 208 | python-pytest-cov |
| 210 | ("python-sphinx" ,python-sphinx) | 209 | python-sphinx |
| 211 | ("python-sphinx-argparse" ,python-sphinx-argparse) | 210 | python-sphinx-argparse |
| 212 | ("python-sphinx-rtd-theme" ,python-sphinx-rtd-theme) | 211 | python-sphinx-rtd-theme |
| 213 | ("python-twine" ,python-twine) | 212 | python-twine |
| 214 | ("python-yamllint" ,python-yamllint))) | 213 | python-yamllint)) |
| 215 | (propagated-inputs | 214 | (propagated-inputs |
| 216 | `(("python-polib" ,python-polib) | 215 | (list python-polib python-pymd4c)) |
| 217 | ("python-pymd4c" ,python-pymd4c))) | ||
| 218 | (home-page "https://github.com/mondeja/mdpo") | 216 | (home-page "https://github.com/mondeja/mdpo") |
| 219 | (synopsis "Markdown file translation utilities using pofiles") | 217 | (synopsis "Markdown file translation utilities using pofiles") |
| 220 | (description | 218 | (description |
| @@ -296,7 +294,7 @@ from Markdown files.") | |||
| 296 | ("perl-yaml-tiny" ,perl-yaml-tiny) | 294 | ("perl-yaml-tiny" ,perl-yaml-tiny) |
| 297 | ("texlive" ,texlive-tiny))) | 295 | ("texlive" ,texlive-tiny))) |
| 298 | (inputs | 296 | (inputs |
| 299 | `(("perl-pod-parser" ,perl-pod-parser))) | 297 | (list perl-pod-parser)) |
| 300 | (home-page "https://po4a.org/") | 298 | (home-page "https://po4a.org/") |
| 301 | (synopsis "Scripts to ease maintenance of translations") | 299 | (synopsis "Scripts to ease maintenance of translations") |
| 302 | (description | 300 | (description |
