summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/bitstring/default.nix
blob: ae01cf9d7b5e559c8fde47b7b4bd7045b977ef0d (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
24
25
26
27
28
{stdenv, fetchgit, buildOcaml, time, autoconf, automake}:

buildOcaml rec {
  name = "bitstring";
  version = "f1673f8"; 
  src = fetchgit {
    url = "https://code.google.com/p/bitstring/";
    rev = "f1673f8";
    sha256 = "1lh97qf1b7mq64pxkphr2w91ri5hfwg58cpjb2xd8a453c9jylw4";
  };

  patches = [ ./camlp4-git.patch ./meta.patch ];

  buildInputs = [time autoconf automake];
  doCheck = true;

  createFindlibDestdir = true;
  hasSharedObjects = true;

  preConfigure = "./bootstrap";

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