405fec7427
ocamlPackages.posix-errno: init at 4.0.2 ocamlPackages.srt: 0.3.3 → 0.3.4
21 lines
298 B
Nix
21 lines
298 B
Nix
{
|
|
buildDunePackage,
|
|
posix-base,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "posix-errno";
|
|
|
|
inherit (posix-base) version src;
|
|
|
|
propagatedBuildInputs = [
|
|
posix-base
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = posix-base.meta // {
|
|
description = "Posix-errno provides comprehensive errno handling";
|
|
};
|
|
}
|