guix-patches
[Top][All Lists]
Advanced

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

[bug#56729] [RFC PATCH v2 24/29] gnu: Add sagemath-data-graphs.


From: vicvbcun
Subject: [bug#56729] [RFC PATCH v2 24/29] gnu: Add sagemath-data-graphs.
Date: Mon, 8 Aug 2022 17:45:59 +0200

* gnu/packages/sagemath.scm (sagemath-data-graphs): 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 da7194c490..037d42b1dc 100644
--- a/gnu/packages/sagemath.scm
+++ b/gnu/packages/sagemath.scm
@@ -710,3 +710,24 @@ (define-public sagemath-data-combinatorial-designs
     (description synopsis)
     ;; Sage claims public domain
     (license #f)))
+
+(define-public sagemath-data-graphs
+  (package
+    (name "sagemath-data-graphs")
+    (version "202110214")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://mirrors.mit.edu/sage/spkg/upstream/graphs/graphs-";
+                    version
+                    ".tar.bz2"))
+              (sha256
+               (base32
+                "0h9p5wrxips51x6vpfiiaqzp9j004nwppzc9qc2iaqakk06pq8q7"))))
+    (build-system copy-build-system)
+    (arguments '(#:install-plan '(("." "share/graphs"))))
+    (home-page "https://github.com/jasongrout/graph_database";) ;; correct?
+    (synopsis "A database of graphs")
+    (description synopsis)
+    ;; Arch says gpl
+    (license #f)))
-- 
2.37.0






reply via email to

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