From 031610aa8abc449280673d422b2b8c6c5d194031 Mon Sep 17 00:00:00 2001 From: Alexandru-Sergiu Marton Date: Tue, 31 Mar 2020 15:16:25 +0300 Subject: gnu: scdoc: Update to 1.10.1. * gnu/packages/man.scm (scdoc): Update to 1.10.1. Signed-off-by: Efraim Flashner --- gnu/packages/man.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/man.scm') diff --git a/gnu/packages/man.scm b/gnu/packages/man.scm index 1c7569261b..6d7d5e2339 100644 --- a/gnu/packages/man.scm +++ b/gnu/packages/man.scm @@ -240,7 +240,7 @@ automatically.") (define-public scdoc (package (name "scdoc") - (version "1.9.4") + (version "1.10.1") (source (origin (method url-fetch) @@ -249,7 +249,7 @@ automatically.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "00zc3rzj97gscby31djlqyczvqpyhrl66i44czwzmmn7rc5j03m1")))) + "13x7g1r56bshvfmlvapvz35ywnbgsh337kywb5kcv8nc6b3j3q40")))) (build-system gnu-build-system) (arguments `(#:make-flags -- cgit v1.2.3 From 4a5ae4ebf7f1705577480d758649358b69e961b6 Mon Sep 17 00:00:00 2001 From: Vincent Legoll Date: Sat, 4 Apr 2020 19:49:17 +0200 Subject: gnu: man-db: Make some inputs native. * gnu/packages/man.scm (man-db)[inputs]: Move flex from here... [native-inputs]: ...to here. Signed-off-by: Danny Milosavljevic --- gnu/packages/man.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gnu/packages/man.scm') diff --git a/gnu/packages/man.scm b/gnu/packages/man.scm index 6d7d5e2339..7463b1dbd8 100644 --- a/gnu/packages/man.scm +++ b/gnu/packages/man.scm @@ -7,6 +7,7 @@ ;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice ;;; Copyright © 2018, 2019 Rutger Helling ;;; Copyright © 2018, 2019 Marius Bakke +;;; Copyright © 2020 Vincent Legoll ;;; ;;; This file is part of GNU Guix. ;;; @@ -137,10 +138,10 @@ a flexible and convenient way.") (srfi srfi-1)))) (native-inputs `(("pkg-config" ,pkg-config) + ("flex" ,flex) ("groff" ,groff))) ;needed at build time (troff, grops, soelim, etc.) (inputs - `(("flex" ,flex) - ("gdbm" ,gdbm) + `(("gdbm" ,gdbm) ("groff-minimal" ,groff-minimal) ("less" ,less) ("libpipeline" ,libpipeline) -- cgit v1.2.3