nixpkgs/pkgs/development/ocaml-modules/bitstring/default.nix

28 lines
789 B
Nix
Raw Normal View History

2017-01-25 06:51:05 +00:00
{ stdenv, fetchurl, buildOcaml, time, autoconf, automake }:
buildOcaml rec {
name = "bitstring";
2017-01-25 06:51:05 +00:00
version = "2.1.0";
src = fetchurl {
url = http://github.com/xguerin/bitstring/archive/v2.1.0.tar.gz;
sha256 = "0miw4banfpmx4kxrckpqr57b1fcmsqdmspyjx6gqjd4kghm4l7xj";
};
2017-01-25 06:51:05 +00:00
patches = [ ./camlp4-git.patch ./srcdir.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 ];
};
}