mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
85c606d097
* ocamlPackages.git: 3.2.0 -> 3.3.0 * minor fixes to tests (while introducing new failures in the nix sandbox we have to patch) * compatibility fixes to commit messages with git fsck and github at the expense of potentially breaking older ocaml-git managed repositories. https://github.com/mirage/ocaml-git/releases/tag/3.3.0 * ocamlPackages.irmin: 2.4.0 -> 2.5.1 * irmin-graphql: enable tests as they now work without network * irmin-layers: tests were removed * ppx_irmin: tests were removed Compatibility with git 3.3.0 and improved performance. https://github.com/mirage/irmin/releases/tag/2.5.0 https://github.com/mirage/irmin/releases/tag/2.5.1 * ocamlPackages.{git, irmin}: add myself to maintainers
28 lines
628 B
Nix
28 lines
628 B
Nix
{ lib, fetchurl, buildDunePackage, ppxlib, ppx_repr }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ppx_irmin";
|
|
version = "2.5.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirage/irmin/releases/download/${version}/irmin-${version}.tbz";
|
|
sha256 = "131pcgmpys6danprcbxzf4pdsl0ka74bpmmxz8db4507cvxhsz3n";
|
|
};
|
|
|
|
minimumOCamlVersion = "4.08";
|
|
|
|
useDune2 = true;
|
|
|
|
propagatedBuildInputs = [
|
|
ppx_repr
|
|
ppxlib
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://irmin.org/";
|
|
description = "PPX deriver for Irmin generics";
|
|
license = lib.licenses.isc;
|
|
maintainers = with lib.maintainers; [ vbgl sternenseemann ];
|
|
};
|
|
}
|