summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/bitstring/default.nix
blob: 3d1a554b3307ab9e8b54a7d46767def25f74e505 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchFromGitHub, buildDunePackage, ppx_tools_versioned, ounit }:

buildDunePackage rec {
  pname = "bitstring";
  version = "3.0.0";

  src = fetchFromGitHub {
    owner = "xguerin";
    repo = pname;
    rev = "v${version}";
    sha256 = "0r49qax7as48jgknzaq6p9rbpmrvnmlic713wzz5bj60j5h0396f";
  };

  buildInputs = [ ppx_tools_versioned ounit ];
  doCheck = true;

  meta = with stdenv.lib; {
    description = "This library adds Erlang-style bitstrings and matching over bitstrings as a syntax extension and library for OCaml";
    homepage = https://github.com/xguerin/bitstring;
    license = licenses.lgpl21Plus;
    maintainers = [ maintainers.maurer ];
  };
}