nixpkgs/pkgs/development/ocaml-modules/posix/base.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
616 B
Nix
Raw Normal View History

{ lib, buildDunePackage, fetchFromGitHub
, ctypes, integers
}:
buildDunePackage rec {
pname = "posix-base";
2023-03-31 05:14:09 +00:00
version = "2.0.2";
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-posix";
rev = "v${version}";
2023-03-31 05:14:09 +00:00
hash = "sha256-xxNaPJZdcW+KnT7rYUuC7ZgmHtXTppZG2BOmpKweC/U=";
};
2023-03-31 05:14:09 +00:00
duneVersion = "3";
minimalOCamlVersion = "4.08";
propagatedBuildInputs = [ ctypes integers ];
meta = {
homepage = "https://www.liquidsoap.info/ocaml-posix/";
description = "Base module for the posix bindings";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.vbgl ];
};
}