405fec7427
ocamlPackages.posix-errno: init at 4.0.2 ocamlPackages.srt: 0.3.3 → 0.3.4
32 lines
603 B
Nix
32 lines
603 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchFromGitHub,
|
|
ctypes,
|
|
integers,
|
|
}:
|
|
|
|
buildDunePackage (finalAttrs: {
|
|
pname = "posix-base";
|
|
version = "4.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "savonet";
|
|
repo = "ocaml-posix";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-nBSIuz4WEnESlECdKujEcSxFOcSBFxW1zo7J/lT/lCY=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
})
|