diff options
author | Andreas Enge <andreas@enge.fr> | 2025-02-13 23:33:40 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-02-13 23:34:07 +0100 |
commit | 87dd002575fb5090649e56a3a2d10b86b1773c74 (patch) | |
tree | 61c82bba56f5bc9bd87b379e03d83066327c4843 | |
parent | 65bb242bd7a79eb226427fdf1914e763732c7b9c (diff) | |
download | guix-87dd002575fb5090649e56a3a2d10b86b1773c74.tar.gz guix-87dd002575fb5090649e56a3a2d10b86b1773c74.zip |
gnu: Remove combinatorial-designs.
The package would only be useful for sage; but with commit
f83fabf2f6717d0323be95f3e300dc570d170bdc of sage, its content has been
moved into a file internal to the sage distribution.
* gnu/packages/sagemath.scm (combinatorial-designs): Delete variable.
Change-Id: Id690cd9524306a4ea98d745c6e997573b9bf867f
-rw-r--r-- | gnu/packages/sagemath.scm | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/gnu/packages/sagemath.scm b/gnu/packages/sagemath.scm index 92e0ebcbe7..46b5759273 100644 --- a/gnu/packages/sagemath.scm +++ b/gnu/packages/sagemath.scm @@ -351,31 +351,3 @@ to be used by SageMath.") database.") ;; Debian says GPLv2+. (license license:gpl2+))) - -(define-public combinatorial-designs - (package - (name "combinatorial-designs") - (version "20140630") - (source (origin - (method url-fetch) - (uri (string-append - "https://mirrors.mit.edu/sage/spkg/upstream/" - "combinatorial_designs/combinatorial_designs-" - version ".tar.bz2")) - (sha256 - (base32 - "0bj8ngiq59hipa6izi6g5ph5akmy4cbk0vlsb0wa67f7grnnqj69")))) - (build-system copy-build-system) - (arguments - '(#:install-plan '(("." "share/combinatorial_designs/")))) - (home-page "https://www.sagemath.org") - (synopsis "Data for Combinatorial Designs") - (description - "This package contains data for combinatorial designs. It -currently contains: - -@itemize -@item The table of @acronym{MOLS, Mutually orthogonal Latin squares} from the -Handbook of Combinatorial Designs, 2nd edition. -@end itemize") - (license license:public-domain))) |