diff options
| author | Andreas Enge <andreas@enge.fr> | 2026-03-14 21:37:02 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-14 21:38:53 +0100 |
| commit | 358794b7d7dabcca1e9ae6bc18f5919fd067f4d5 (patch) | |
| tree | bf8e4728f190b8dc69e344da7223df6617cbde7e /gnu/packages/engineering.scm | |
| parent | 9cd60969f716112b3385e89c36c778df4cedd8a0 (diff) | |
gnu: libmedfile: Switch to gexps.
* gnu/packages/engineering.scm (libmedfile)[arguments]: Switch to gexps.
Change-Id: If33051d047bc046a4e62f5fefdcbb7672a62069b
Diffstat (limited to 'gnu/packages/engineering.scm')
| -rw-r--r-- | gnu/packages/engineering.scm | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 04e445338e1..c9959224c49 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -3069,15 +3069,14 @@ extension and customization.") (build-system cmake-build-system) (inputs (list hdf5 zlib)) (arguments - `(#:parallel-tests? #f - #:phases - (modify-phases %standard-phases - (add-after 'install 'remove-test-output - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (delete-file-recursively - (string-append out "/bin/testc")) - #t)))))) + (list + #:parallel-tests? #f + #:phases + #~(modify-phases %standard-phases + (add-after 'install 'remove-test-output + (lambda _ + (delete-file-recursively + (string-append #$output "/bin/testc"))))))) (home-page "https://www.salome-platform.org") (synopsis "Library to read and write MED files") (description |
