405fec7427
ocamlPackages.posix-errno: init at 4.0.2 ocamlPackages.srt: 0.3.3 → 0.3.4
18 lines
252 B
Nix
18 lines
252 B
Nix
{
|
|
buildDunePackage,
|
|
posix-base,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "posix-math2";
|
|
inherit (posix-base) src version;
|
|
|
|
propagatedBuildInputs = [
|
|
posix-base
|
|
];
|
|
|
|
meta = posix-base.meta // {
|
|
description = "Bindings for posix math";
|
|
};
|
|
}
|