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

opam: 2.4.1 -> 2.5.0 (#465605)

parents a60d5aa3 ee68d7c6
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -17,15 +17,15 @@ let
    ;
in

buildDunePackage rec {
buildDunePackage (finalAttrs: {
  pname = "opam-publish";
  version = "2.7.0";
  version = "2.7.1";

  src = fetchFromGitHub {
    owner = "ocaml-opam";
    repo = "opam-publish";
    rev = version;
    hash = "sha256-Li7Js8mrxOrRNNuu8z4X+VXbuECfk7Gsgpy4d6R3RwU=";
    tag = finalAttrs.version;
    hash = "sha256-yaFkR+MxkN6/skXx9euKVjTGXk9DraxDj+/2XQuHK4I=";
  };

  buildInputs = [
@@ -38,14 +38,14 @@ buildDunePackage rec {
    github-unix
  ];

  meta = with lib; {
  meta = {
    homepage = "https://github.com/ocaml-opam/opam-publish";
    description = "Tool to ease contributions to opam repositories";
    mainProgram = "opam-publish";
    license = with licenses; [
    license = with lib.licenses; [
      lgpl21Only
      ocamlLgplLinkingException
    ];
    maintainers = with maintainers; [ niols ];
    maintainers = with lib.maintainers; [ niols ];
  };
}
})
+4 −4
Original line number Diff line number Diff line
@@ -15,15 +15,15 @@

buildDunePackage (finalAttrs: {
  pname = "oui";
  version = "0-unstable-2025-10-08";
  version = "0-unstable-2025-12-02";

  minimalOCamlVersion = "4.10";
  minimalOCamlVersion = "4.13";

  src = fetchFromGitHub {
    owner = "OCamlPro";
    repo = "ocaml-universal-installer";
    rev = "2fe2e33c3f8e1744fdd4dab04458043451bf9f62";
    hash = "sha256-ALQIQ3Ab1Gs2xST9OwsO5IxixzgKlUg7uHZvfHMbv7Q=";
    rev = "202dae889c4850674f7b40ca8d541f98afa2ba0f";
    hash = "sha256-pwvp6bJF18NzKh/JSet05VHoJNZ7FKr0Hsi/RJ/TK4U=";
  };

  nativeBuildInputs = [
+2 −2
Original line number Diff line number Diff line
@@ -15,11 +15,11 @@ assert lib.versionAtLeast ocaml.version "4.08.0";

stdenv.mkDerivation (finalAttrs: {
  pname = "opam";
  version = "2.4.1";
  version = "2.5.0";

  src = fetchurl {
    url = "https://github.com/ocaml/opam/releases/download/${finalAttrs.version}/opam-full-${finalAttrs.version}.tar.gz";
    hash = "sha256-xNBTApeTxxTk5zQLEVdCjA+QeDWF+xfzUVgkemQEZ9k=";
    hash = "sha256-JfuY+WLEInwSYeFCr8aKQWd45ugZYAvV7j7EoYrh4jg=";
  };

  strictDeps = true;