summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/asn1-combinators/default.nix
blob: 544db9e0d78b9ceb507234ce19944d47c02f5440 (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
29
30
31
32
{ stdenv, fetchzip, ocaml, findlib, cstruct, zarith, ounit }:

assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01";

let version = "0.1.2"; in

stdenv.mkDerivation {
  name = "ocaml-asn1-combinators-${version}";

  src = fetchzip {
    url = "https://github.com/mirleft/ocaml-asn1-combinators/archive/${version}.tar.gz";
    sha256 = "13vpdgcyph4vq3gcp8b16756s4nz3crpxhxfhcqgc1ffz61gc0h5";
  };

  buildInputs = [ ocaml findlib ounit ];
  propagatedBuildInputs = [ cstruct zarith ];

  createFindlibDestdir = true;

  configureFlags = "--enable-tests";
  doCheck = true;
  checkTarget = "test";

  meta = {
    homepage = https://github.com/mirleft/ocaml-asn1-combinators;
    description = "Combinators for expressing ASN.1 grammars in OCaml";
    platforms = ocaml.meta.platforms or [];
    license = stdenv.lib.licenses.bsd2;
    maintainers = with stdenv.lib.maintainers; [ vbgl ];
    broken = stdenv.isi686; # https://github.com/mirleft/ocaml-asn1-combinators/issues/13
  };
}