2021-01-21 17:00:13 +00:00
|
|
|
{lib, stdenv, fetchurl}:
|
2012-07-05 09:07:26 +00:00
|
|
|
|
2021-06-22 13:21:29 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libdivsufsort";
|
|
|
|
version = "2.0.1";
|
2017-10-26 23:44:19 +00:00
|
|
|
|
2012-07-05 09:07:26 +00:00
|
|
|
src = fetchurl {
|
2021-06-22 13:21:29 +00:00
|
|
|
url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/libdivsufsort/libdivsufsort-${version}.tar.bz2";
|
2012-07-05 09:07:26 +00:00
|
|
|
sha256 = "1g0q40vb2k689bpasa914yi8sjsmih04017mw20zaqqpxa32rh2m";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/y-256/libdivsufsort";
|
2021-01-21 17:00:13 +00:00
|
|
|
license = lib.licenses.mit;
|
2012-07-05 09:07:26 +00:00
|
|
|
description = "Library to construct the suffix array and the BW transformed string";
|
2021-01-21 17:00:13 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2012-07-05 09:07:26 +00:00
|
|
|
};
|
|
|
|
}
|