Unverified Commit f749eda1 authored by Vincent Laporte's avatar Vincent Laporte
Browse files

ocamlPackages.ocsigen_server: 6.0.0 → 7.0.0

parent 05bdb8a8
Loading
Loading
Loading
Loading
+5 −8
Original line number Diff line number Diff line
@@ -52,17 +52,15 @@ let
  ];
in

buildDunePackage {
  version = "6.0.0-unstable-2025-08-11";
buildDunePackage (finalAttrs: {
  version = "7.0.0";
  pname = "ocsigenserver";

  minimalOCamlVersion = "4.08";

  src = fetchFromGitHub {
    owner = "ocsigen";
    repo = "ocsigenserver";
    rev = "0d3c74d71fbdf738d1e45a98814b7ebdd1efe6c1";
    hash = "sha256-KEHTw4cCPRJSE4SAnUFWzeoiEz8y9nUQFpaFiNxAsiU=";
    tag = finalAttrs.version;
    hash = "sha256-J2XBelpRWJGeIF9RdC9+icJI1hc6Oe0k1w25QHZz0zs=";
  };

  nativeBuildInputs = [
@@ -110,8 +108,7 @@ buildDunePackage {
      A full featured Web server. It implements most features of the HTTP protocol, and has a very powerful extension mechanism that make very easy to plug your own OCaml modules for generating pages.
    '';
    license = lib.licenses.lgpl21Only;
    inherit (ocaml.meta) platforms;
    maintainers = [ lib.maintainers.gal_bolle ];
  };

}
})