summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/bitstring/2.0.4.nix
blob: 68ce28c40bd5f3bcc9c3d6147de3b211f66cfd21 (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
{stdenv, fetchurl, buildOcaml, time}:

buildOcaml rec {
  name = "bitstring";
  version = "2.0.4"; 
  src = fetchurl {
    url = "http://bitstring.googlecode.com/files/ocaml-bitstring-${version}.tar.gz";
    sha256 = "0mapzn2ls5qcrzjm1az50lqjj76ldkmz4fbv2phc9w6smab50qy5";
  };

  patches = [ ./camlp4.patch ./meta.patch ./srcdir.patch ];

  buildInputs = [time];
  doCheck = true;

  createFindlibDestdir = true;
  hasSharedObjects = 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 = http://code.google.com/p/bitstring/;
    license = licenses.lgpl21Plus;
    maintainers = [ maintainers.maurer ];
  };
}