1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/ocaml-modules/bitstring/2.0.4.nix

26 lines
742 B
Nix
Raw Normal View History

{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";
};
2015-09-01 05:43:37 +01:00
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 ];
};
}