evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / unix-errno / default.nix
blobd869748ecb5008d806c52f0660098ce512fe628c
1 { lib, buildDunePackage, fetchurl, ctypes, integers, result }:
3 buildDunePackage rec {
4   pname = "unix-errno";
5   version = "0.6.2";
7   minimalOCamlVersion = "4.03.0"; # Specified to be 4.01.0, but it's actually 4.03
9   src = fetchurl {
10     url = "https://github.com/xapi-project/ocaml-unix-errno/releases/download/${version}/unix-errno-${version}.tbz";
11     sha256 = "sha256-LWqbyGcxs6f/FcOPo3JYR3U+AL0JHeWCiGjuYhxxrWU=";
12   };
14   propagatedBuildInputs = [ ctypes integers result ];
16   meta = with lib; {
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 ];
21   };