2021-01-21 09:00:13 -08:00
|
|
|
{lib, stdenv, fetchurl}:
|
2012-07-05 02:07:26 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "libdivsufsort-2.0.1";
|
2017-10-26 16:44:19 -07:00
|
|
|
|
2012-07-05 02:07:26 -07:00
|
|
|
src = fetchurl {
|
2017-10-26 16:44:19 -07:00
|
|
|
url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/libdivsufsort/libdivsufsort-2.0.1.tar.bz2";
|
2012-07-05 02:07:26 -07:00
|
|
|
sha256 = "1g0q40vb2k689bpasa914yi8sjsmih04017mw20zaqqpxa32rh2m";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/y-256/libdivsufsort";
|
2021-01-21 09:00:13 -08:00
|
|
|
license = lib.licenses.mit;
|
2012-07-05 02:07:26 -07:00
|
|
|
description = "Library to construct the suffix array and the BW transformed string";
|
2021-01-21 09:00:13 -08:00
|
|
|
platforms = lib.platforms.unix;
|
2012-07-05 02:07:26 -07:00
|
|
|
};
|
|
|
|
}
|