2021-01-11 12:49:15 +00:00
|
|
|
{ stdenv, lib, fetchurl, buildDunePackage
|
2020-04-27 11:59:18 +01:00
|
|
|
, alcotest, mtime, mirage-crypto-rng, tls, git-binary
|
|
|
|
, angstrom, astring, cstruct, decompress, digestif, encore, duff, fmt, checkseum
|
2021-02-19 21:19:24 +00:00
|
|
|
, fpath, ke, logs, lwt, ocamlgraph, uri, rresult, base64
|
2021-02-16 07:39:46 +00:00
|
|
|
, result, bigstringaf, optint, mirage-flow, domain-name, emile
|
|
|
|
, mimic, carton, carton-lwt, carton-git, ipaddr, psq, crowbar, alcotest-lwt
|
2017-07-01 14:02:08 +01:00
|
|
|
}:
|
|
|
|
|
2018-11-05 10:21:46 +00:00
|
|
|
buildDunePackage rec {
|
2021-01-21 00:24:35 +00:00
|
|
|
pname = "git";
|
2021-03-21 18:27:43 +00:00
|
|
|
version = "3.3.3";
|
2020-04-27 11:59:18 +01:00
|
|
|
|
2021-02-16 07:39:46 +00:00
|
|
|
minimumOCamlVersion = "4.08";
|
2021-01-21 00:24:35 +00:00
|
|
|
useDune2 = true;
|
2017-07-01 14:02:08 +01:00
|
|
|
|
2021-01-21 00:24:35 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/mirage/ocaml-git/releases/download/${version}/git-${version}.tbz";
|
2021-03-21 18:27:43 +00:00
|
|
|
sha256 = "0j8pw9w74bfhrjsqr8zm8g7h1az94z9vg7qgc6z6649zm9yjiax3";
|
2021-01-21 00:24:35 +00:00
|
|
|
};
|
2017-07-01 14:02:08 +01:00
|
|
|
|
2021-02-19 21:19:24 +00:00
|
|
|
buildInputs = [
|
|
|
|
base64
|
|
|
|
];
|
2021-01-21 00:24:35 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
angstrom astring checkseum cstruct decompress digestif encore duff fmt fpath
|
2021-02-16 07:39:46 +00:00
|
|
|
ke logs lwt ocamlgraph uri rresult result bigstringaf optint mirage-flow
|
|
|
|
domain-name emile mimic carton carton-lwt carton-git ipaddr psq
|
|
|
|
];
|
|
|
|
checkInputs = [
|
|
|
|
alcotest alcotest-lwt mtime mirage-crypto-rng tls git-binary crowbar
|
2021-01-21 00:24:35 +00:00
|
|
|
];
|
|
|
|
doCheck = !stdenv.isAarch64;
|
2018-05-03 19:37:47 +01:00
|
|
|
|
2021-01-21 00:24:35 +00:00
|
|
|
meta = {
|
|
|
|
description = "Git format and protocol in pure OCaml";
|
|
|
|
license = lib.licenses.isc;
|
2021-02-19 21:19:24 +00:00
|
|
|
maintainers = with lib.maintainers; [ sternenseemann vbgl ];
|
2021-01-21 00:24:35 +00:00
|
|
|
homepage = "https://github.com/mirage/ocaml-git";
|
|
|
|
};
|
2017-07-01 14:02:08 +01:00
|
|
|
}
|