diff options
author | Maxime Devos <maximedevos@telenet.be> | 2022-03-04 13:01:15 +0000 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-03-11 23:34:49 -0500 |
commit | 26f0310128794599549eeccc6fac6619c636c1a8 (patch) | |
tree | 6d15331f838c7261de9e63111e5568a42f9dfd5b /gnu/packages | |
parent | d43568013e6fe7233f884238954295a4f7de05c5 (diff) |
gnu: lablgtk: Run tests conditionally.
* gnu/packages/ocaml.scm (lablgtk)[arguments]: Remove #:tests?
instead of unconditionally setting it to #t.
[inputs]: Use new style.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/ocaml.scm | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index bf52d055c3..2684692892 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -7108,8 +7108,7 @@ support for Mparser."))) "11qfc39cmwfwfpwmjh6wh98zwdv6p73bv8hqwcsss869vs1r7gmn")))) (build-system dune-build-system) (arguments - `(#:tests? #t - #:test-target "." + `(#:test-target "." #:phases (modify-phases %standard-phases (add-before 'build 'make-writable @@ -7125,10 +7124,7 @@ support for Mparser."))) (propagated-inputs (list ocaml-cairo2)) (inputs - `(("camlp5" ,camlp5) - ("gtk+" ,gtk+) - ("gtksourceview-3" ,gtksourceview-3) - ("gtkspell3" ,gtkspell3))) + (list camlp5 gtk+ gtksourceview-3 gtkspell3)) (native-inputs (list pkg-config)) (home-page "https://github.com/garrigue/lablgtk") |