marisa: 0.2.4 -> 0.2.5 (#59486)
This commit is contained in:
parent
668f5c9e6f
commit
e3cad1e03e
@ -1,16 +1,20 @@
|
|||||||
{ stdenv, fetchurl }:
|
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "marisa-${version}";
|
pname = "marisa";
|
||||||
version = "0.2.4";
|
version = "0.2.5";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/marisa-trie/marisa-${version}.tar.gz";
|
owner = "s-yata";
|
||||||
sha256 = "1cwzf8hr348zihkiy0qckx0n6rxg7sy113xhbslb1irw1pvs99v7";
|
repo = "marisa-trie";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0z4bf55np08q3cbi6gvj3cpw3zp8kf2d0jq6k74pjk066m7rapbb";
|
||||||
};
|
};
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/s-yata/marisa-trie;
|
homepage = https://github.com/s-yata/marisa-trie;
|
||||||
description = "Static and space-efficient trie data structure library";
|
description = "Static and space-efficient trie data structure library";
|
||||||
|
Loading…
Reference in New Issue
Block a user