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

buildDunePackage {
  pname = "posix-types";

  inherit (posix-base) version src;

  minimalOCamlVersion = "4.03";
  duneVersion = "3";

  propagatedBuildInputs = [ posix-base ];

  meta = posix-base.meta // {
    description = "Bindings for the types defined in <sys/types.h>";
  };
}