diff options
author | Ashish SHUKLA <ashish.is@lostca.se> | 2025-07-18 21:42:33 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-19 01:11:28 +0100 |
commit | 05425d1cc4de4242f4126d272715708960a0862c (patch) | |
tree | 300f9c730ccc6010ee0cd18460dbfafc5707c959 | |
parent | aaceaf73a0b093d45fd1d36e608342df8d9c4966 (diff) |
gnu: dictd: Update to 1.13.3.
* gnu/packages/dictd.scm (dictd): Update to 1.13.3.
[arguments]: Add phases.
Change-Id: I861c1ee9891ea2791f3d8d3f423822a50ea3e6d6
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/dictd.scm | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/gnu/packages/dictd.scm b/gnu/packages/dictd.scm index 85d21f4deb..408d5fc4ef 100644 --- a/gnu/packages/dictd.scm +++ b/gnu/packages/dictd.scm @@ -68,7 +68,7 @@ performance of memory-intensive applications.") (define-public dictd (package (name "dictd") - (version "1.13.1") + (version "1.13.3") (source (origin (method url-fetch) @@ -79,12 +79,20 @@ performance of memory-intensive applications.") version ".tar.gz")) (sha256 - (base32 "06racmv25ihwgwf67fgj2703ik0m5i2cjzcxasa88kc92rysdwg4")))) + (base32 "0w8i7w3xs53kj5v72xf1zq24kz4qa6fcg1lmibs279wgnggjj88r")))) (inputs (list libmaa zlib)) (native-inputs (list libtool bison flex)) (arguments (list - #:test-target "test")) + #:test-target "test" + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'patch-configure + (lambda _ + ;; workaround for missing yylex in yywrap lex check + (substitute* "configure" + (("yywrap [(]void[)];") + "yywrap (void); int yylex () { return 0; }"))))))) (build-system gnu-build-system) (synopsis "@command{dict}, @command{dictd} and @command{dictfmt} programs") (description |