nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{stdenv, fetchurl}:
2
3stdenv.mkDerivation {
4 name = "libdivsufsort-2.0.1";
5
6 src = fetchurl {
7 url = http://libdivsufsort.googlecode.com/files/libdivsufsort-2.0.1.tar.bz2;
8 sha256 = "1g0q40vb2k689bpasa914yi8sjsmih04017mw20zaqqpxa32rh2m";
9 };
10
11 meta = {
12 homepage = http://code.google.com/p/libdivsufsort/;
13 license = stdenv.lib.licenses.mit;
14 description = "Library to construct the suffix array and the BW transformed string";
15 };
16}