mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 12:15:34 +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,
|
lib,
|
||||||
stdenv,
|
stdenv,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
autoreconfHook,
|
cmake,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "marisa";
|
pname = "marisa";
|
||||||
version = "0.2.7";
|
version = "0.3.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "s-yata";
|
owner = "s-yata";
|
||||||
repo = "marisa-trie";
|
repo = "marisa-trie";
|
||||||
rev = "v${version}";
|
tag = "v${version}";
|
||||||
sha256 = "sha256-+OGtDbwl7ar3i65POkTGyC4AYkOT4YuASfdt5FGJ8yM=";
|
hash = "sha256-XOXX0NuU+erL/KDAZgBeX+LKO9uSEOyP1/VuMDE5pi0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/s-yata/marisa-trie";
|
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";
|
description = "Static and space-efficient trie data structure library";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = with maintainers; [ sifmelcara ];
|
maintainers = with maintainers; [ sifmelcara ];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue