guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#56729] [RFC PATCH v2 25/29] gnu: Add sagemath-data-poytopes-db.


From: vicvbcun
Subject: [bug#56729] [RFC PATCH v2 25/29] gnu: Add sagemath-data-poytopes-db.
Date: Mon, 8 Aug 2022 17:46:00 +0200

* gnu/packages/sagemath.scm (sagemath-data-poytopes-db): New variable.
---
 gnu/packages/sagemath.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/sagemath.scm b/gnu/packages/sagemath.scm
index 037d42b1dc..1f5c51bf86 100644
--- a/gnu/packages/sagemath.scm
+++ b/gnu/packages/sagemath.scm
@@ -731,3 +731,24 @@ (define-public sagemath-data-graphs
     (description synopsis)
     ;; Arch says gpl
     (license #f)))
+
+(define-public sagemath-data-polytopes-db
+  (package
+    (name "sagemath-data-polytopes-db")
+    (version "20170220")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    
"https://mirrors.mit.edu/sage/spkg/upstream/polytopes/polytopes-";
+                    version
+                    ".tar.bz2"))
+              (sha256
+               (base32
+                "1q0cd811ilhax4dsj9y5p7z8prlalqr7k9mzq178c03frbgqny6b"))))
+    (build-system copy-build-system)
+    (arguments '(#:install-plan '(("." "share/reflexive_polytopes"))))
+    (home-page "https://www.sagemath.org";)
+    (synopsis "Lists of 2- and 3-dimensional reflexive polytopes")
+    (description synopsis)
+    ;; Sage says gpl
+    (license #f)))
-- 
2.37.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]