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

buildDunePackage {
  pname = "posix-socket";

  inherit (posix-base) version src;

  duneVersion = "3";

  propagatedBuildInputs = [ posix-base ];

  doCheck = true;

  meta = posix-base.meta // {
    description = "Bindings for posix sockets";
  };

}