gnu: recutils: Upgrade to 1.6.
* gnu/packages/recutils.scm (recutils): Upgrade to 1.6. Add cURL and libgcrypt as inputs.
This commit is contained in:
parent
64a967cc9c
commit
b8c3527828
|
@ -24,27 +24,31 @@
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (gnu packages emacs)
|
#:use-module (gnu packages emacs)
|
||||||
#:use-module (gnu packages check)
|
#:use-module (gnu packages check)
|
||||||
#:use-module (gnu packages algebra))
|
#:use-module (gnu packages algebra)
|
||||||
|
#:use-module (gnu packages curl)
|
||||||
|
#:use-module (gnu packages gnupg))
|
||||||
|
|
||||||
(define-public recutils
|
(define-public recutils
|
||||||
(package
|
(package
|
||||||
(name "recutils")
|
(name "recutils")
|
||||||
(version "1.5")
|
(version "1.6")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnu/recutils/recutils-"
|
(uri (string-append "mirror://gnu/recutils/recutils-"
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1v2xzwwwhc5j5kmvg4sv6baxjpsfqh8ln7ilv4mgb1408rs7xmky"))
|
"0dxmz73n4qaasqymx97nlw6in98r6lnsfp0586hwkn95d3ll306s"))))
|
||||||
(patches
|
|
||||||
(list (search-patch "diffutils-gets-undeclared.patch")))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs `(;; TODO: Enable optional deps when they're packaged.
|
(native-inputs `(("emacs" ,emacs)
|
||||||
;; ("curl" ,(nixpkgs-derivation "curl"))
|
("bc" ,bc)))
|
||||||
("emacs" ,emacs)
|
|
||||||
("check" ,check)
|
;; TODO: Add more optional inputs.
|
||||||
("bc" ,bc)))
|
;; FIXME: Our Bash doesn't have development headers (need for the 'readrec'
|
||||||
|
;; built-in command), but it's not clear how to get them installed.
|
||||||
|
(inputs `(("curl" ,curl)
|
||||||
|
("libgcrypt" ,libgcrypt)
|
||||||
|
("check" ,check)))
|
||||||
(synopsis "Manipulate plain text files as databases")
|
(synopsis "Manipulate plain text files as databases")
|
||||||
(description
|
(description
|
||||||
"Recutils is a set of tools and libraries for creating and
|
"Recutils is a set of tools and libraries for creating and
|
||||||
|
|
Loading…
Reference in New Issue