diff options
| -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") |
