nixpkgs/pkgs/development/ocaml-modules/ptmap/default.nix

30 lines
666 B
Nix
Raw Normal View History

2020-09-10 05:53:26 +00:00
{ lib, buildDunePackage, fetchurl
, seq
, stdlib-shims
}:
2020-09-10 05:53:26 +00:00
buildDunePackage rec {
pname = "ptmap";
version = "2.0.5";
2020-09-10 05:53:26 +00:00
useDune2 = true;
2020-09-10 05:53:26 +00:00
src = fetchurl {
url = "https://github.com/backtracking/ptmap/releases/download/${version}/ptmap-${version}.tbz";
sha256 = "1apk61fc1y1g7x3m3c91fnskvxp6i0vk5nxwvipj56k7x2pzilgb";
};
2020-09-10 05:53:26 +00:00
propagatedBuildInputs = [ seq ];
2020-09-10 05:53:26 +00:00
doCheck = true;
2020-09-10 05:53:26 +00:00
checkInputs = [ stdlib-shims ];
meta = {
homepage = "https://www.lri.fr/~filliatr/software.en.html";
description = "Maps over integers implemented as Patricia trees";
2020-09-10 05:53:26 +00:00
license = lib.licenses.lgpl21;
maintainers = with lib.maintainers; [ volth ];
};
}