8 stdenv.mkDerivation rec {
9 pname = "libdivsufsort";
12 src = fetchFromGitHub {
16 hash = "sha256-4p+L1bq9SBgWSHXx+WYWAe60V2g1AN+zlJvC+F367Tk=";
20 "-DBUILD_DIVSUFSORT64=YES"
23 nativeBuildInputs = [ cmake ];
26 homepage = "https://github.com/y-256/libdivsufsort";
27 license = lib.licenses.mit;
28 description = "Library to construct the suffix array and the BW transformed string";
29 platforms = lib.platforms.unix;