[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add psascan.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add psascan. |
Date: |
Fri, 06 Jan 2023 06:30:10 -0500 |
This is an automated email from the git hooks/post-receive script.
rekado pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new a768b0433e gnu: Add psascan.
a768b0433e is described below
commit a768b0433e0b79c5a32910ce5515086b92725e84
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Fri Jan 6 12:21:04 2023 +0100
gnu: Add psascan.
* gnu/packages/cpp.scm (psascan): New variable.
---
gnu/packages/cpp.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index cc594e56c5..f0486a511e 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -74,6 +74,7 @@
#:use-module (gnu packages compression)
#:use-module (gnu packages crypto)
#:use-module (gnu packages curl)
+ #:use-module (gnu packages datastructures)
#:use-module (gnu packages documentation)
#:use-module (gnu packages fontutils)
#:use-module (gnu packages gcc)
@@ -1114,6 +1115,39 @@ a zero-dependency C++ header-only parser combinator
library for creating
parsers according to a Parsing Expression Grammar (PEG).")
(license license:expat)))
+(define-public psascan
+ (package
+ (name "psascan")
+ (version "0.1.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://www.cs.helsinki.fi/group"
+ "/pads/software/pSAscan"
+ "/pSAscan-" version ".tar.bz2"))
+ (sha256
+ (base32
+ "1cphk4gf202nzkxz6jdjzls4zy27055gwpm0r8cn99gr6c8548cy"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list
+ #:tests? #false ;there are none
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'chdir (lambda _ (chdir "src")))
+ (delete 'configure)
+ (replace 'install
+ (lambda _
+ (install-file "psascan"
+ (string-append #$output "/bin")))))))
+ (inputs (list libdivsufsort))
+ (home-page "https://www.cs.helsinki.fi/group/pads/pSAscan.html")
+ (synopsis "Parallel external memory suffix array construction")
+ (description "This package contains an implementation of the parallel
+external-memory suffix array construction algorithm called pSAscan. The
+algorithm is based on the sequential external-memory suffix array construction
+algorithm called SAscan.")
+ (license license:expat)))
+
(define-public cxxopts
(package
(name "cxxopts")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add psascan.,
guix-commits <=