nixpkgs/pkgs/development/libraries/marisa/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
651 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
2017-09-12 16:06:19 +01:00
stdenv.mkDerivation rec {
2019-04-14 22:01:22 +01:00
pname = "marisa";
2020-06-26 18:19:43 +01:00
version = "0.2.6";
2017-09-12 16:06:19 +01:00
2019-04-14 22:01:22 +01:00
src = fetchFromGitHub {
owner = "s-yata";
repo = "marisa-trie";
rev = "v${version}";
2020-06-26 18:19:43 +01:00
sha256 = "1hy8hfksizk1af6kg8z3b9waiz6d5ggd73fiqcvmhfgra36dscyq";
2017-09-12 16:06:19 +01:00
};
enableParallelBuilding = true;
2019-04-14 22:01:22 +01:00
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
homepage = "https://github.com/s-yata/marisa-trie";
2017-09-12 16:06:19 +01:00
description = "Static and space-efficient trie data structure library";
license = licenses.bsd3;
maintainers = with maintainers; [ sifmelcara ];
2017-09-12 16:06:19 +01:00
platforms = platforms.all;
};
}