summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/irmin/1.4.nix
blob: 878160f4b0aabac3b2ea8c763807b1d5ad46a1c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, fetchurl, buildDunePackage, ocaml
, astring, cstruct, fmt, hex, jsonm, logs, ocaml_lwt, ocamlgraph, uri
}:

buildDunePackage rec {
  pname = "irmin";
  version = "1.4.0";

  minimumOCamlVersion = "4.03";

  src = fetchurl {
    url = "https://github.com/mirage/${pname}/releases/download/${version}/${pname}-${version}.tbz";
    sha256 = "019di4cz0z65knl232rnwj26npnc1mqh8j71xbf0mav6x350g1w5";
  };

  propagatedBuildInputs = [ astring cstruct fmt hex jsonm logs ocaml_lwt ocamlgraph uri ];

  doCheck = true;

  meta = with lib; {
    homepage = https://github.com/mirage/irmin;
    description = "Irmin, a distributed database that follows the same design principles as Git";
    license = licenses.isc;
    maintainers = [ maintainers.alexfmpe ];
  };
}