ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git] / pkgs / development / ocaml-modules / bitstring / default.nix
blob12f1232b71a5ac8aa0f7b0451382621fd37c9dbe
2   lib,
3   fetchFromGitHub,
4   buildDunePackage,
5   stdlib-shims,
6 }:
8 buildDunePackage rec {
9   pname = "bitstring";
10   version = "4.1.1";
12   duneVersion = "3";
14   src = fetchFromGitHub {
15     owner = "xguerin";
16     repo = pname;
17     rev = "v${version}";
18     sha256 = "sha256-eO7/S9PoMybZPnQQ+q9qbqKpYO4Foc9OjW4uiwwNds8=";
19   };
21   propagatedBuildInputs = [ stdlib-shims ];
23   meta = with lib; {
24     description = "This library adds Erlang-style bitstrings and matching over bitstrings as a syntax extension and library for OCaml";
25     homepage = "https://github.com/xguerin/bitstring";
26     license = licenses.lgpl21Plus;
27     maintainers = [ maintainers.maurer ];
28   };