1 { lib, buildDunePackage, fetchurl, ctypes, integers, result }:
7 minimalOCamlVersion = "4.03.0"; # Specified to be 4.01.0, but it's actually 4.03
10 url = "https://github.com/xapi-project/ocaml-unix-errno/releases/download/${version}/unix-errno-${version}.tbz";
11 sha256 = "sha256-LWqbyGcxs6f/FcOPo3JYR3U+AL0JHeWCiGjuYhxxrWU=";
14 propagatedBuildInputs = [ ctypes integers result ];
17 homepage = "https://github.com/xapi-project/ocaml-unix-errno"; # This is the repo used in the opam package
18 description = "Unix errno types, maps, and support for OCaml";
19 license = with licenses; [ isc lgpl21Only ]; # All the files indicate ISC, but there's an LGPL LICENSE file
20 maintainers = with maintainers; [ dandellion ];