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

buildDunePackage rec {
  pname = "angstrom-unix";

  inherit (angstrom) version src;

  propagatedBuildInputs = [ angstrom ];

  doCheck = true;

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