summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhislain Vaillant <ghislain.vaillant@inria.fr>2026-08-15 23:04:19 +0200
committerGhislain Vaillant <ghislain.vaillant@inria.fr>2026-08-15 23:48:42 +0200
commitb217aeae129925fcda5ba426c0bc80e812fb5a3b (patch)
treebba89f4ebfcaf827dc7f7bacdd728be3fbafb181
parentf4ec8b5bdeec29933d91165bca5710a066481e85 (diff)
hep: Add qdcnum.
* guix-science/packages/hep.scm (qdcnum): New variable.
-rw-r--r--guix-science/packages/hep.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/guix-science/packages/hep.scm b/guix-science/packages/hep.scm
index 18f6902..5287e6a 100644
--- a/guix-science/packages/hep.scm
+++ b/guix-science/packages/hep.scm
@@ -645,6 +645,28 @@ Python.")
645HEP packages against.") 645HEP packages against.")
646 (license license:bsd-3))) 646 (license license:bsd-3)))
647 647
648(define-public qdcnum
649 (package
650 (name "qdcnum")
651 (version "18.00.00")
652 (source
653 (origin
654 (method url-fetch)
655 (uri (string-append
656 "https://qcdnum.mpp.mpg.de/qcdnum-files/download/qcdnum"
657 (string-delete #\. version) ".tar.gz"))
658 (sha256
659 (base32 "00721qrfrz91w887gy34hc8xhgj0sca1k9qb13j540w4nwkgj271"))))
660 (build-system gnu-build-system)
661 (native-inputs (list gfortran))
662 (home-page "https://qcdnum.mpp.mpg.de/")
663 (synopsis "Fast QCD evolution program")
664 (description
665 "@code{QCDNUM} numerically solves the DGLAP evolution equations on a
666discrete grid in x and Q2. You can evolve unpolarised parton density
667functions in NNLO, and polarised PDFs or fragmentation functions in NLO.")
668 (license license:gpl3+)))
669
648(define-public siscone 670(define-public siscone
649 (package 671 (package
650 (name "siscone") 672 (name "siscone")