diff options
| author | Ghislain Vaillant <ghislain.vaillant@inria.fr> | 2026-08-24 12:51:38 +0200 |
|---|---|---|
| committer | Ghislain Vaillant <ghislain.vaillant@inria.fr> | 2026-08-24 15:08:35 +0200 |
| commit | 9603c41bf97839d7f8b2748b70271d6a17a1a44f (patch) | |
| tree | 8e2856400f4d849078553d53f2192844e2012168 | |
| parent | 52d7ab7851a5ced97c0c8f1a602a103b5ca0b046 (diff) | |
hep: Add collier.
* guix-science/packages/hep.scm (collier): New variable.
| -rw-r--r-- | guix-science/packages/hep.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/guix-science/packages/hep.scm b/guix-science/packages/hep.scm index 267a7e9..c52857b 100644 --- a/guix-science/packages/hep.scm +++ b/guix-science/packages/hep.scm | |||
| @@ -173,6 +173,37 @@ package.") | |||
| 173 | 173 | ||
| 174 | (define-public clhep clhep-2.4.7.2) | 174 | (define-public clhep clhep-2.4.7.2) |
| 175 | 175 | ||
| 176 | (define-public collier | ||
| 177 | (package | ||
| 178 | (name "collier") | ||
| 179 | (version "1.2.10") | ||
| 180 | (source | ||
| 181 | (origin | ||
| 182 | (method git-fetch) | ||
| 183 | (uri (git-reference | ||
| 184 | (url "https://gitlab.com/collier3/collier.git") | ||
| 185 | (commit (string-append "COLLIER-" version)))) | ||
| 186 | (file-name (git-file-name name version)) | ||
| 187 | (sha256 | ||
| 188 | (base32 "19br59lnzygyw5mkb79z03h6dzrlhjx6qkraqvnj4a1jjg9bclbp")))) | ||
| 189 | (build-system cmake-build-system) | ||
| 190 | (arguments | ||
| 191 | (list | ||
| 192 | #:phases | ||
| 193 | #~(modify-phases %standard-phases | ||
| 194 | (replace 'check | ||
| 195 | (lambda* (#:key tests? #:allow-other-keys) | ||
| 196 | (when tests? | ||
| 197 | (invoke "make" "demo"))))))) | ||
| 198 | (native-inputs (list gfortran)) | ||
| 199 | (home-page "https://collier.hepforge.org/") | ||
| 200 | (synopsis "Complex One-Loop LIbrary with Extended Regularizations") | ||
| 201 | (description | ||
| 202 | "@code{COLLIER} is a fortran library for the numerical evaluation of | ||
| 203 | one-loop scalar and tensor integrals appearing in perturbative relativistic | ||
| 204 | quantum field theory.") | ||
| 205 | (license license:gpl3))) | ||
| 206 | |||
| 176 | (define-public evtgen | 207 | (define-public evtgen |
| 177 | (package | 208 | (package |
| 178 | (name "evtgen") | 209 | (name "evtgen") |
