mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
19 lines
293 B
Nix
19 lines
293 B
Nix
{ 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";
|
|
};
|
|
|
|
}
|