gnu: gengetopt: Update to 2.23.
* gnu/packages/popt.scm (gengetopt): Update to 2.23. [native-inputs]: New field.
This commit is contained in:
parent
d2de780272
commit
02dad49d42
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013, 2014, 2016 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2013, 2014, 2016, 2019 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2017, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2017, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;;
|
;;;
|
||||||
|
@ -24,7 +24,8 @@
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system cmake)
|
#:use-module (guix build-system cmake)
|
||||||
#:use-module (guix licenses))
|
#:use-module (guix licenses)
|
||||||
|
#:use-module (gnu packages texinfo))
|
||||||
|
|
||||||
(define-public argtable
|
(define-public argtable
|
||||||
(package
|
(package
|
||||||
|
@ -126,19 +127,21 @@ appropriately.")
|
||||||
(define-public gengetopt
|
(define-public gengetopt
|
||||||
(package
|
(package
|
||||||
(name "gengetopt")
|
(name "gengetopt")
|
||||||
(version "2.22.6")
|
(version "2.23")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnu/gengetopt/gengetopt-"
|
(uri (string-append "mirror://gnu/gengetopt/gengetopt-"
|
||||||
version ".tar.gz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1xq1kcfs6hri101ss4dhym0jn96z4v6jdvx288mfywadc245mc1h"))))
|
"1b44fn0apsgawyqa4alx2qj5hls334mhbszxsy6rfr0q074swhdr"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:parallel-build? #f ; not supported
|
`(#:parallel-build? #f ; not supported
|
||||||
#:parallel-tests? #f)) ; likewise
|
#:parallel-tests? #f)) ; likewise
|
||||||
|
(native-inputs
|
||||||
|
`(("texinfo" ,texinfo)))
|
||||||
(synopsis "Create parsers for command line options")
|
(synopsis "Create parsers for command line options")
|
||||||
(description
|
(description
|
||||||
"GNU Gengetopt is a program to generate a C/C++ function for parsing
|
"GNU Gengetopt is a program to generate a C/C++ function for parsing
|
||||||
|
|
Loading…
Reference in New Issue