about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/angstrom-unix/default.nix
blob: af72c7f8d2d9fd142b433c5977b14b3fcd5c79ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, fetchFromGitHub, buildDunePackage, angstrom }:

buildDunePackage rec {
  pname = "angstrom-unix";

  inherit (angstrom) version useDune2 src;

  minimumOCamlVersion = "4.03";

  propagatedBuildInputs = [ angstrom ];

  doCheck = true;

  meta = {
    inherit (angstrom.meta) homepage license;
    description = "Unix support for Angstrom";
    maintainers = with lib.maintainers; [ romildo ];
  };
}