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