diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2025-03-03 10:10:27 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2025-03-03 10:10:27 +0200 |
commit | 169f88d90fea05918e13d8c1f8b7d25c47a01a43 (patch) | |
tree | b9183c035e2369b6423d80faa0d3040ab3abbd8e /gnu/packages/dictionaries.scm | |
parent | 3148060d83891e0eee89751b78b54d12780465f4 (diff) |
gnu: sdcv: Improve package style.
* gnu/packages/dictionaries.scm (sdcv)[arguments]: Rewrite using g-exps.
[native-inputs]: Remove package labels.
Change-Id: Ic0cdb64d959489429759110d3d339518a3b7c304
Diffstat (limited to 'gnu/packages/dictionaries.scm')
-rw-r--r-- | gnu/packages/dictionaries.scm | 35 |
1 files changed, 17 insertions, 18 deletions
diff --git a/gnu/packages/dictionaries.scm b/gnu/packages/dictionaries.scm index 42a2e9ce0e..f51ed24111 100644 --- a/gnu/packages/dictionaries.scm +++ b/gnu/packages/dictionaries.scm @@ -410,25 +410,24 @@ intelligible and easily correctable.") (base32 "17jwcgc3jdp41rvxqi7zdsysfpjgzqq4z1l345qwffp1an6yaaqk")))) (build-system cmake-build-system) (arguments - `(#:configure-flags - '("-DBUILD_TESTS=YES" - ;; https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1078404 - "-DCMAKE_CXX_FLAGS=-fpermissive") - #:phases - (modify-phases %standard-phases - (add-after 'build 'build-lang - (lambda _ - (invoke "make" "lang"))) - (add-before 'check 'pre-check - (lambda _ - (setenv "HOME" (getcwd)) - #t))))) + (list + #:configure-flags + #~(list "-DBUILD_TESTS=YES" + ;; https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1078404 + "-DCMAKE_CXX_FLAGS=-fpermissive") + #:phases + #~(modify-phases %standard-phases + (add-after 'build 'build-lang + (lambda _ + (invoke "make" "lang"))) + (add-before 'check 'pre-check + (lambda _ + (setenv "HOME" (getcwd))))))) (native-inputs - `(("gettext" ,gettext-minimal) - ("pkg-config" ,pkg-config) - - ;; For tests. - ("jq" ,jq))) + (list gettext-minimal + pkg-config + ;; For tests. + jq)) (inputs (list glib ncurses readline zlib)) (home-page "https://dushistov.github.io/sdcv/") |