mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: autogen: Update to 5.18.5.
* gnu/packages/autogen.scm (autogen): Update to 5.18.5. Add pkg-config to native-inputs.
This commit is contained in:
parent
e736cfcee6
commit
fb8ebb8316
1 changed files with 5 additions and 3 deletions
|
@ -23,13 +23,14 @@ (define-module (gnu packages autogen)
|
|||
#:use-module (guix build-system gnu)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages base)
|
||||
#:use-module (gnu packages guile))
|
||||
|
||||
(define-public autogen
|
||||
(package
|
||||
(name "autogen")
|
||||
(version "5.18.4")
|
||||
(version "5.18.5")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
|
@ -38,9 +39,10 @@ (define-public autogen
|
|||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0pbjzwgvmjvi6nl1bcyhfc9kl93s6321dgmvp5dqdip7i8dgin9w"))))
|
||||
"1flnbnmkbqmbfgammkl8m36wrlk6rhpgnf9pdm6gdfhqalxvggbv"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs `(("perl" ,perl))) ;for doc generator mdoc
|
||||
(native-inputs `(("perl" ,perl) ;for doc generator mdoc
|
||||
("pkg-config" ,pkg-config)))
|
||||
(inputs `(("which" ,which)
|
||||
("guile" ,guile-2.0)))
|
||||
(arguments
|
||||
|
|
Loading…
Reference in a new issue