diff options
| author | Ghislain Vaillant <ghislain.vaillant@inria.fr> | 2026-08-13 18:06:08 +0200 |
|---|---|---|
| committer | Ghislain Vaillant <ghislain.vaillant@inria.fr> | 2026-08-15 23:21:03 +0200 |
| commit | e8772e928d38e36cc461ee7cfe0dc71894a60b57 (patch) | |
| tree | adc7c2936084109f3d45f7e498f0dee6ee4b942b | |
| parent | b475f87f172b1f1c7e20c1917488a066b95eedca (diff) | |
hep: Add siscone.
* guix-science/packages/hep.scm (siscone): New variable.
| -rw-r--r-- | guix-science/packages/hep.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/guix-science/packages/hep.scm b/guix-science/packages/hep.scm index ae9d21a..bb9117f 100644 --- a/guix-science/packages/hep.scm +++ b/guix-science/packages/hep.scm | |||
| @@ -451,6 +451,36 @@ Python.") | |||
| 451 | HEP packages against.") | 451 | HEP packages against.") |
| 452 | (license license:bsd-3))) | 452 | (license license:bsd-3))) |
| 453 | 453 | ||
| 454 | (define-public siscone | ||
| 455 | (package | ||
| 456 | (name "siscone") | ||
| 457 | (version "3.1.2") | ||
| 458 | (source | ||
| 459 | (origin | ||
| 460 | (method git-fetch) | ||
| 461 | (uri (git-reference | ||
| 462 | (url "https://gitlab.com/fastjet/siscone.git") | ||
| 463 | (commit (string-append "siscone-" version)))) | ||
| 464 | (file-name (git-file-name name version)) | ||
| 465 | (sha256 | ||
| 466 | (base32 "0gfqcgyrsnnl103bk81crxnm863jv8vsmm4z6hgsv8k8gsgl0l3w")))) | ||
| 467 | (build-system cmake-build-system) | ||
| 468 | (arguments | ||
| 469 | (list | ||
| 470 | #:phases | ||
| 471 | #~(modify-phases %standard-phases | ||
| 472 | (replace 'check | ||
| 473 | (lambda* (#:key tests? #:allow-other-keys) | ||
| 474 | (when tests? | ||
| 475 | (with-directory-excursion "examples" | ||
| 476 | (invoke "./siscone_test")))))))) | ||
| 477 | (home-page "https://siscone.hepforge.org/") | ||
| 478 | (synopsis "Seedless Infrared-Safe Cone jet algorithm") | ||
| 479 | (description | ||
| 480 | "@code{SISCone} is an algorithm for identifying jets in high-energy | ||
| 481 | particle collisions.") | ||
| 482 | (license license:gpl2+))) | ||
| 483 | |||
| 454 | (define-public yoda | 484 | (define-public yoda |
| 455 | (package | 485 | (package |
| 456 | (name "yoda") | 486 | (name "yoda") |
