mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
marisa: 0.2.7 -> 0.3.0
Diff: https://github.com/s-yata/marisa-trie/compare/v0.2.7...v0.3.0 Changelog: https://github.com/s-yata/marisa-trie/releases/tag/v0.3.0
This commit is contained in:
parent
d9dd002a29
commit
1e16873f68
1 changed files with 6 additions and 5 deletions
|
@ -2,26 +2,27 @@
|
|||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
autoreconfHook,
|
||||
cmake,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "marisa";
|
||||
version = "0.2.7";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "s-yata";
|
||||
repo = "marisa-trie";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-+OGtDbwl7ar3i65POkTGyC4AYkOT4YuASfdt5FGJ8yM=";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-XOXX0NuU+erL/KDAZgBeX+LKO9uSEOyP1/VuMDE5pi0=";
|
||||
};
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/s-yata/marisa-trie";
|
||||
changelog = "https://github.com/s-yata/marisa-trie/releases/tag/${src.tag}";
|
||||
description = "Static and space-efficient trie data structure library";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ sifmelcara ];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue