summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhislain Vaillant <ghislain.vaillant@inria.fr>2026-08-17 14:02:45 +0200
committerGhislain Vaillant <ghislain.vaillant@inria.fr>2026-08-17 15:30:17 +0200
commit4e55b5ee043986362462ed40f74e7e6d982fa35f (patch)
tree68478dbb0b4a563fd45dce26bd37c8cca3d0ce9c
parent3b4b866d28772d29668af0938a002f48ca5e816f (diff)
hep: Add sherpa.
* guix-science/packages/hep.scm (sherpa): New variable.
-rw-r--r--guix-science/packages/hep.scm32
1 files changed, 32 insertions, 0 deletions
diff --git a/guix-science/packages/hep.scm b/guix-science/packages/hep.scm
index f4ace30..63972d5 100644
--- a/guix-science/packages/hep.scm
+++ b/guix-science/packages/hep.scm
@@ -748,6 +748,38 @@ discrete grid in x and Q2. You can evolve unpolarised parton density
748functions in NNLO, and polarised PDFs or fragmentation functions in NLO.") 748functions in NNLO, and polarised PDFs or fragmentation functions in NLO.")
749 (license license:gpl3+))) 749 (license license:gpl3+)))
750 750
751(define-public sherpa
752 (package
753 (name "sherpa")
754 (version "3.0.5")
755 (source
756 (origin
757 (method git-fetch)
758 (uri (git-reference
759 (url "https://gitlab.com/sherpa-team/sherpa.git")
760 (commit (string-append "v" version))))
761 (file-name (git-file-name name version))
762 (sha256
763 (base32 "1wsvmw33y56pz5r4p7hkjgfxw85x4hngpmk67yi96amzd70rvkf5"))))
764 (build-system cmake-build-system)
765 (arguments
766 (list
767 #:tests? #f ;requires external data
768 #:configure-flags
769 #~(list "-DSHERPA_ENABLE_PYTHON:BOOL=ON")))
770 (inputs (list lhapdf libzip))
771 (native-inputs (list gfortran pkg-config python swig))
772 (home-page "https://sherpa-team.gitlab.io/")
773 (synopsis "Simulation of High-Energy Reactions of PArticles")
774 (description
775 "Sherpa is a Monte Carlo event generator for the Simulation of High-Energy
776Reactions of PArticles in lepton-lepton, lepton-photon, photon-photon,
777lepton-hadron and hadron-hadron collisions. Simulation programs - also dubbed
778event generators - like Sherpa are indispensable work horses for current
779particle physics phenomenology and are (at) the interface between theory and
780experiment.")
781 (license license:gpl3)))
782
751(define-public siscone 783(define-public siscone
752 (package 784 (package
753 (name "siscone") 785 (name "siscone")