diff options
| author | jgart <jgart@dismail.de> | 2022-11-05 10:06:54 -0500 |
|---|---|---|
| committer | Guillaume Le Vaillant <glv@posteo.net> | 2022-11-06 10:36:31 +0100 |
| commit | f1b0b2344c4c6465cd6033128366e86fa16e5f23 (patch) | |
| tree | 805a22f2b2e8e757064d404bd266bb80f3a63150 | |
| parent | a6c90c293d5b0c77d3e1e967546fe0aadc53a102 (diff) | |
gnu: Add cl-numerical-utilities.
* gnu/packages/lisp-xyz.scm (cl-numerical-utilities, ecl-numerical-utilities,
sbcl-numerical-utilities): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
| -rw-r--r-- | gnu/packages/lisp-xyz.scm | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 98860f131c6..52f022e1acc 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm | |||
| @@ -24435,6 +24435,47 @@ processing named definitions.") | |||
| 24435 | (define-public ecl-definitions-systems | 24435 | (define-public ecl-definitions-systems |
| 24436 | (sbcl-package->ecl-package sbcl-definitions-systems)) | 24436 | (sbcl-package->ecl-package sbcl-definitions-systems)) |
| 24437 | 24437 | ||
| 24438 | (define-public sbcl-numerical-utilities | ||
| 24439 | (let ((commit "44f45ba952b35675640630e40cf90df6f8279746") | ||
| 24440 | (revision "0")) | ||
| 24441 | (package | ||
| 24442 | (name "sbcl-numerical-utilities") | ||
| 24443 | (version (git-version "1.2.0" revision commit)) | ||
| 24444 | (source | ||
| 24445 | (origin | ||
| 24446 | (method git-fetch) | ||
| 24447 | (uri (git-reference | ||
| 24448 | (url "https://github.com/Lisp-Stat/numerical-utilities") | ||
| 24449 | (commit commit))) | ||
| 24450 | (file-name (git-file-name "cl-numerical-utilities" version)) | ||
| 24451 | (sha256 | ||
| 24452 | (base32 "1dwz8zxhqzi31qp863zj1cn1lgljny14snycb9nk871qs121kmsd")))) | ||
| 24453 | (build-system asdf-build-system/sbcl) | ||
| 24454 | (arguments | ||
| 24455 | '(#:asd-systems '("num-utils" "num-utils/tests"))) | ||
| 24456 | (inputs | ||
| 24457 | (list sbcl-alexandria | ||
| 24458 | sbcl-alexandria-plus | ||
| 24459 | sbcl-anaphora | ||
| 24460 | sbcl-array-operations | ||
| 24461 | sbcl-let-plus | ||
| 24462 | sbcl-select)) | ||
| 24463 | (native-inputs | ||
| 24464 | (list sbcl-fiveam)) | ||
| 24465 | (home-page "https://lisp-stat.github.io/numerical-utilities") | ||
| 24466 | (synopsis "Utilities for numerical programming") | ||
| 24467 | (description | ||
| 24468 | "@code{cl-numerical-utilities} is a collection of packages useful in | ||
| 24469 | numerical applications, each big enough to be its own package, but too small | ||
| 24470 | to split out into a separate ASDF system.") | ||
| 24471 | (license license:ms-pl)))) | ||
| 24472 | |||
| 24473 | (define-public cl-numerical-utilities | ||
| 24474 | (sbcl-package->cl-source-package sbcl-numerical-utilities)) | ||
| 24475 | |||
| 24476 | (define-public ecl-numerical-utilities | ||
| 24477 | (sbcl-package->ecl-package sbcl-numerical-utilities)) | ||
| 24478 | |||
| 24438 | (define-public sbcl-zr-utils | 24479 | (define-public sbcl-zr-utils |
| 24439 | (let ((commit "e7eaffcb71811f6e1ab85fb15a079bcac4038eeb") | 24480 | (let ((commit "e7eaffcb71811f6e1ab85fb15a079bcac4038eeb") |
| 24440 | (revision "0")) | 24481 | (revision "0")) |
