summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/bitv/default.nix
blob: 23e8d145a30819706500bc4ee01ff711872d7ca8 (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
{ stdenv, lib, fetchzip, autoreconfHook, which, ocaml, findlib }:

if !lib.versionAtLeast ocaml.version "4.02"
then throw "bitv is not available for OCaml ${ocaml.version}"
else

stdenv.mkDerivation rec {
  name = "ocaml${ocaml.version}-bitv-${version}";
  version = "1.3";

  src = fetchzip {
    url = "https://github.com/backtracking/bitv/archive/${version}.tar.gz";
    sha256 = "0vkh1w9fpi5m1sgiqg6r38j3fqglhdajmbyiyr91113lrpljm75i";
  };

  buildInputs = [ autoreconfHook which ocaml findlib ];

  createFindlibDestdir = true;

  meta = {
    description = "A bit vector library for OCaml";
    license = lib.licenses.lgpl21;
    homepage = "https://github.com/backtracking/bitv";
    maintainers = [ lib.maintainers.vbgl ];
    inherit (ocaml.meta) platforms;
  };
}