Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildDunePackage, fetchurl, ctypes, integers, result }:
2
3buildDunePackage rec {
4 pname = "unix-errno";
5 version = "0.6.1";
6
7 minimalOCamlVersion = "4.03.0"; # Specified to be 4.01.0, but it's actually 4.03
8
9 src = fetchurl {
10 url = "https://github.com/xapi-project/ocaml-unix-errno/releases/download/${version}/unix-errno-${version}.tbz";
11 sha256 = "sha256-jZqtHwUKTffjuOP2jdKKQRtEOBKyclhfeiPO96hEj4c=";
12 };
13
14 propagatedBuildInputs = [ ctypes integers result ];
15
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 };
22}