summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhislain Vaillant <ghislain.vaillant@inria.fr>2026-08-20 15:24:52 +0200
committerGhislain Vaillant <ghislain.vaillant@inria.fr>2026-08-21 08:31:45 +0200
commit500ac197063b2d7edd3d4ec6341431e6c2b7188c (patch)
treefa34523303dcd81202c843558617a45811ee3d07
parentb61b43517cf9f6acb8075101b939d2b50a6ff0e6 (diff)
hep: pythia: Build with HDF5.
* guix-science/packages/hep.scm (pythia) [arguments]<#:configure-flags>: Enable HDF5 and highfive. <#:phases>: Run HDF5 test in 'check. [inputs]: Add hdf5 and highfive.
-rw-r--r--guix-science/packages/hep.scm7
1 files changed, 7 insertions, 0 deletions
diff --git a/guix-science/packages/hep.scm b/guix-science/packages/hep.scm
index e576d8c..2f43922 100644
--- a/guix-science/packages/hep.scm
+++ b/guix-science/packages/hep.scm
@@ -869,10 +869,14 @@ HEP packages against.")
869 #$(this-package-input "fastjet")) 869 #$(this-package-input "fastjet"))
870 (string-append "--with-gzip=" 870 (string-append "--with-gzip="
871 #$(this-package-input "zlib")) 871 #$(this-package-input "zlib"))
872 (string-append "--with-hdf5="
873 #$(this-package-input "hdf5"))
872 (string-append "--with-lhapdf6=" 874 (string-append "--with-lhapdf6="
873 #$(this-package-input "lhapdf")) 875 #$(this-package-input "lhapdf"))
874 (string-append "--with-hepmc3=" 876 (string-append "--with-hepmc3="
875 #$(this-package-input "hepmc3")) 877 #$(this-package-input "hepmc3"))
878 (string-append "--with-highfive="
879 #$(this-package-input "highfive"))
876 (string-append "--with-root=" 880 (string-append "--with-root="
877 #$(this-package-input "root")) 881 #$(this-package-input "root"))
878 (string-append "--with-yoda=" 882 (string-append "--with-yoda="
@@ -939,6 +943,7 @@ HEP packages against.")
939 (run (string-join (list "101" ;standalone 943 (run (string-join (list "101" ;standalone
940 "114" ;with yoda 944 "114" ;with yoda
941 "131" ;with hepmc3 945 "131" ;with hepmc3
946 "136" ;with hdf5
942 "141" ;with root 947 "141" ;with root
943 "161" ;with fastjet 948 "161" ;with fastjet
944 ) " ")) 949 ) " "))
@@ -950,7 +955,9 @@ HEP packages against.")
950 (string-append "--threads=" threads) 955 (string-append "--threads=" threads)
951 (string-append "--run='" run "'")))))))))) 956 (string-append "--run='" run "'"))))))))))
952 (inputs (list fastjet 957 (inputs (list fastjet
958 hdf5
953 hepmc3 959 hepmc3
960 highfive
954 lhapdf 961 lhapdf
955 root 962 root
956 yoda 963 yoda