Put in earplugs

This commit is contained in:
nik gaffney 2024-01-20 11:11:57 +01:00
parent bef5aade07
commit c727173913
Signed by: nik
GPG key ID: 989F5E6EDB478160

View file

@ -18,13 +18,14 @@
(define-module (zzkt packages gephi) (define-module (zzkt packages gephi)
#:use-module (guix) #:use-module (guix)
#:use-module (guix build-system maven) #:use-module (guix build-system ant)
#:use-module (guix build-system trivial)
#:use-module (guix git-download) #:use-module (guix git-download)
#:use-module ((guix licenses) #:prefix license:) #:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages) #:use-module (gnu packages)
#:use-module (gnu packages gawk)) #:use-module (gnu packages gawk))
(define-public gephi (define-public gephi-ant-nest
(package (package
(name "gephi") (name "gephi")
(version "0.10.2") (version "0.10.2")
@ -38,10 +39,33 @@
(sha256 (base32 "01ywl2p5yi6ccam8778yjayrjjvmbh2h3yw4qd263siyih0zs9hj")))) (sha256 (base32 "01ywl2p5yi6ccam8778yjayrjjvmbh2h3yw4qd263siyih0zs9hj"))))
(inputs (inputs
(list gawk)) (list gawk))
(build-system maven-build-system) (build-system ant-build-system)
;; (arguments (list #:configure-flags #~(list "--enable-silent-rules"))) ;; (arguments (list #:configure-flags #~(list "--enable-silent-rules")))
(home-page "https://gephi.org/") (home-page "https://gephi.org/")
(synopsis "The Open Graph Viz Platform") (synopsis "The Open Graph Viz Platform. Built from source")
(description
"Gephi is a tool for data analysts and scientists keen to explore and understand graphs. Like Photoshop™ but for graph data, the user interacts with the representation, manipulate the structures, shapes and colors to reveal hidden patterns. The goal is to help data analysts to make hypothesis, intuitively discover patterns, isolate structure singularities or faults during data sourcing. It is a complementary tool to traditional statistics, as visual thinking with interactive interfaces is now recognized to facilitate reasoning. This is a software for Exploratory Data Analysis, a paradigm appeared in the Visual Analytics field of research.")
(license license:gpl3+)))
;; https://github.com/gephi/gephi/releases/download/v0.10.1/gephi-0.10.1-linux-x64.tar.gz
(define-public gephi-binary
(package
(name "gephi")
(version "0.10.1")
(source
(origin
(method url-fetch)
(uri "https://github.com/gephi/gephi/releases/download/v0.10.1/gephi-0.10.1-linux-x64.tar.gz")
(sha256
(base32 "0y7kzwh5ascmqs7whlf5jajj46zy2zyb57944sggy1rz7i6czhpn"))))
(build-system trivial-build-system)
(arguments
'(#:builder (begin
(mkdir %output) #t)))
(home-page "https://gephi.org/")
(synopsis "The Open Graph Viz Platform. Latest binary release")
(description (description
"Gephi is a tool for data analysts and scientists keen to explore and understand graphs. Like Photoshop™ but for graph data, the user interacts with the representation, manipulate the structures, shapes and colors to reveal hidden patterns. The goal is to help data analysts to make hypothesis, intuitively discover patterns, isolate structure singularities or faults during data sourcing. It is a complementary tool to traditional statistics, as visual thinking with interactive interfaces is now recognized to facilitate reasoning. This is a software for Exploratory Data Analysis, a paradigm appeared in the Visual Analytics field of research.") "Gephi is a tool for data analysts and scientists keen to explore and understand graphs. Like Photoshop™ but for graph data, the user interacts with the representation, manipulate the structures, shapes and colors to reveal hidden patterns. The goal is to help data analysts to make hypothesis, intuitively discover patterns, isolate structure singularities or faults during data sourcing. It is a complementary tool to traditional statistics, as visual thinking with interactive interfaces is now recognized to facilitate reasoning. This is a software for Exploratory Data Analysis, a paradigm appeared in the Visual Analytics field of research.")
(license license:gpl3+))) (license license:gpl3+)))