summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--guix-science/packages/hep.scm36
1 files changed, 36 insertions, 0 deletions
diff --git a/guix-science/packages/hep.scm b/guix-science/packages/hep.scm
index 1db0aea..d6f9ca0 100644
--- a/guix-science/packages/hep.scm
+++ b/guix-science/packages/hep.scm
@@ -1162,6 +1162,42 @@ physics from the Standard Model to BSM theories, and from perturbative jet,
1162boson and top-quarks to hadron decays, inclusive QCD, and Heavy Ion physics.") 1162boson and top-quarks to hadron decays, inclusive QCD, and Heavy Ion physics.")
1163 (license license:gpl3))) 1163 (license license:gpl3)))
1164 1164
1165(define-public tauola
1166 (package
1167 (name "tauola")
1168 (version "1.1.10")
1169 (source
1170 (origin
1171 (method url-fetch)
1172 (uri (string-append "https://tauolapp.web.cern.ch/tauolapp/resources"
1173 "/TAUOLA."
1174 version
1175 "/TAUOLA."
1176 version
1177 "-LHC.tar.gz"))
1178 (file-name (string-append name "-" version ".tar.gz"))
1179 (sha256
1180 (base32 "0cb6l870gch5jjb71dmv27xjvg5hys0xnr7n8byr9982mlznqgcs"))))
1181 (build-system gnu-build-system)
1182 (arguments
1183 (list
1184 #:tests? #f ;requires mc-tester
1185 #:configure-flags
1186 #~(list "--with-hepmc" "--with-hepmc3")
1187 #:phases
1188 #~(modify-phases %standard-phases
1189 (add-before 'bootstrap 'remove-configure-script
1190 (lambda _
1191 (delete-file "configure"))))))
1192 (inputs (list hepmc2 hepmc3))
1193 (native-inputs (list autoconf automake gfortran libtool))
1194 (home-page "https://tauolapp.web.cern.ch/tauolapp/")
1195 (synopsis "TAUOLA Monte Carlo for simulation of tau lepton decays")
1196 (description
1197 "The TAUOLA Monte Carlo is used for the generation of hadronic currens,
1198matrix elements and anomalous decays.")
1199 (license license:gpl3)))
1200
1165;; FIXME: Build with rivet support. 1201;; FIXME: Build with rivet support.
1166;; FIXME: Build with zlib support. 1202;; FIXME: Build with zlib support.
1167(define-public thepeg 1203(define-public thepeg