Unverified Commit 14014e02 authored by Yifei Sun's avatar Yifei Sun Committed by GitHub
Browse files

ocamlPackages.dockerfile: 8.3.2 -> 8.3.3 (#455167)

parents 502d71be b8bf170a
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -8,15 +8,15 @@
  alcotest,
}:

buildDunePackage rec {
buildDunePackage (finalAttrs: {
  pname = "dockerfile";
  version = "8.3.2";
  version = "8.3.3";

  src = fetchFromGitHub {
    owner = "ocurrent";
    repo = "ocaml-dockerfile";
    tag = version;
    hash = "sha256-L4TjCf8SaNMxqkrr+AoL/Lx2oWgf2owJFs26lu68ejs=";
    tag = finalAttrs.version;
    hash = "sha256-F58KnC4YpsS0ehmi6efFMT+WG5BDuYfQOA1RsFVtO/8=";
  };

  propagatedBuildInputs = [
@@ -35,8 +35,8 @@ buildDunePackage rec {
    description = "Interface for creating Dockerfiles";
    homepage = "https://www.ocurrent.org/ocaml-dockerfile/dockerfile/Dockerfile/index.html";
    downloadPage = "https://github.com/ocurrent/ocaml-dockerfile";
    changelog = "https://github.com/ocurrent/ocaml-dockerfile/blob/v${version}/CHANGES.md";
    changelog = "https://github.com/ocurrent/ocaml-dockerfile/blob/${finalAttrs.version}/CHANGES.md";
    license = lib.licenses.isc;
    maintainers = [ lib.maintainers.ethancedwards8 ];
  };
}
})