Unverified Commit 007d7747 authored by Vincent Laporte's avatar Vincent Laporte Committed by GitHub
Browse files

ocamlPackages.jingoo: 1.4.4 → 1.5.2 (#488601)

parents 98b24f74 3f656ac6
Loading
Loading
Loading
Loading
+6 −9
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
  lib,
  buildDunePackage,
  fetchFromGitHub,
  ocaml,
  menhir,
  ppxlib,
  ppx_deriving,
@@ -12,17 +11,15 @@
  ounit2,
}:

buildDunePackage rec {
buildDunePackage (finalAttrs: {
  pname = "jingoo";
  version = "1.4.4";

  minimalOCamlVersion = "4.05";
  version = "1.5.2";

  src = fetchFromGitHub {
    owner = "tategakibunko";
    repo = "jingoo";
    rev = "v${version}";
    sha256 = "sha256-qIw69OE7wYyZYKnIc9QrmF8MzY5Fg5pBFyIpexmaYxA=";
    tag = finalAttrs.version;
    hash = "sha256-1357XOYZseItCrIm/qNP46aL8tQyX8CFh77CBycL1ew=";
  };

  nativeBuildInputs = [ menhir ];
@@ -34,7 +31,7 @@ buildDunePackage rec {
    uucp
  ];
  checkInputs = [ ounit2 ];
  doCheck = lib.versionAtLeast ocaml.version "4.08";
  doCheck = true;

  meta = {
    homepage = "https://github.com/tategakibunko/jingoo";
@@ -43,4 +40,4 @@ buildDunePackage rec {
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.ericbmerritt ];
  };
}
})