biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / posix / base.nix
blobab78d3737f9f333e7a6f472d3ff5c2f2373943a0
1 { lib, buildDunePackage, fetchFromGitHub
2 , ctypes, integers
3 }:
5 buildDunePackage rec {
6   pname = "posix-base";
7   version = "2.0.2";
9   src = fetchFromGitHub {
10     owner = "savonet";
11     repo = "ocaml-posix";
12     rev = "v${version}";
13     hash = "sha256-xxNaPJZdcW+KnT7rYUuC7ZgmHtXTppZG2BOmpKweC/U=";
14   };
16   duneVersion = "3";
17   minimalOCamlVersion = "4.08";
19   propagatedBuildInputs = [ ctypes integers ];
21   meta = {
22     homepage = "https://www.liquidsoap.info/ocaml-posix/";
23     description = "Base module for the posix bindings";
24     license = lib.licenses.mit;
25     maintainers = [ lib.maintainers.vbgl ];
26   };