marisa: init at 0.2.4

This commit is contained in:
mingchuan 2017-09-12 23:06:19 +08:00 committed by Orivej Desh
parent ccdccf1460
commit 2ab2b885c5
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "marisa-${version}";
version = "0.2.4";
src = fetchurl {
url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/marisa-trie/marisa-${version}.tar.gz";
sha256 = "1cwzf8hr348zihkiy0qckx0n6rxg7sy113xhbslb1irw1pvs99v7";
};
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = https://code.google.com/p/marisa-trie/;
description = "Static and space-efficient trie data structure library";
license = licenses.bsd3;
maintainers = with maintainers; [ mingchuan ];
platforms = platforms.all;
};
}

View File

@ -9748,6 +9748,8 @@ with pkgs;
mapnik = callPackage ../development/libraries/mapnik { };
marisa = callPackage ../development/libraries/marisa {};
matio = callPackage ../development/libraries/matio { };
mbedtls = callPackage ../development/libraries/mbedtls { };