summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--guix-science/packages/hep.scm34
1 files changed, 34 insertions, 0 deletions
diff --git a/guix-science/packages/hep.scm b/guix-science/packages/hep.scm
index c52857b..3140aff 100644
--- a/guix-science/packages/hep.scm
+++ b/guix-science/packages/hep.scm
@@ -1129,6 +1129,40 @@ discrete grid in x and Q2. You can evolve unpolarised parton density
1129functions in NNLO, and polarised PDFs or fragmentation functions in NLO.") 1129functions in NNLO, and polarised PDFs or fragmentation functions in NLO.")
1130 (license license:gpl3+))) 1130 (license license:gpl3+)))
1131 1131
1132(define-public recola1
1133 (package
1134 (name "recola1")
1135 (version "1.5.1")
1136 (source
1137 (origin
1138 (method git-fetch)
1139 (uri (git-reference
1140 (url "https://gitlab.com/recola/recola1.git")
1141 (commit version)))
1142 (file-name (git-file-name name version))
1143 (sha256
1144 (base32 "1wvc6qrklkw2d5j9q087c26kjscdhq0ff0fqdzp6pyhrskp8rmqy"))))
1145 (build-system cmake-build-system)
1146 (arguments
1147 (list
1148 #:configure-flags
1149 #~(list (string-append "-Dcollier_DIR:PATH="
1150 #$(this-package-input "collier") "/lib/cmake"))
1151 #:phases
1152 #~(modify-phases %standard-phases
1153 (replace 'check
1154 (lambda* (#:key tests? #:allow-other-keys)
1155 (invoke "make" "check"))))))
1156 (inputs (list collier))
1157 (native-inputs (list gfortran))
1158 (home-page "https://recola.gitlab.io/")
1159 (synopsis "Recursive Computation of 1-Loop Amplitudes (version 1)")
1160 (description
1161 "Recola is a Fortran95 computer program for the automated generation and
1162numerical computation of EW and QCD amplitudes in the Standard Model at
1163next-to-leading order.")
1164 (license license:gpl3)))
1165
1132(define-public sherpa 1166(define-public sherpa
1133 (package 1167 (package
1134 (name "sherpa") 1168 (name "sherpa")