python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / bitstring / default.nix
blob12ed4ae787da95364afb2d8872112f9443228518
1 { lib, fetchFromGitHub, buildDunePackage, stdlib-shims }:
3 buildDunePackage rec {
4   pname = "bitstring";
5   version = "4.1.0";
7   useDune2 = true;
9   src = fetchFromGitHub {
10     owner = "xguerin";
11     repo = pname;
12     rev = "v${version}";
13     sha256 = "0mghsl8b2zd2676mh1r9142hymhvzy9cw8kgkjmirxkn56wbf56b";
14   };
16   propagatedBuildInputs = [ stdlib-shims ];
18   meta = with lib; {
19     description = "This library adds Erlang-style bitstrings and matching over bitstrings as a syntax extension and library for OCaml";
20     homepage = "https://github.com/xguerin/bitstring";
21     license = licenses.lgpl21Plus;
22     maintainers = [ maintainers.maurer ];
23   };