Unverified Commit fd92780d authored by Ulrik Strid's avatar Ulrik Strid Committed by GitHub
Browse files

opam: 2.2.0 → 2.3.0 (#359044)

parents d1d5334c e162d35f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
, jsonm, ocamlgraph, re, sha, swhid_core, uutf
}:

buildDunePackage rec {
buildDunePackage {
  pname = "opam-core";

  inherit (opam) src version;
+1 −1
Original line number Diff line number Diff line
{ lib, buildDunePackage, opam-core, opam-file-format }:

buildDunePackage rec {
buildDunePackage {
  pname = "opam-format";

  inherit (opam-core) src version;
+1 −1
Original line number Diff line number Diff line
{ lib, buildDunePackage, opam-format, curl }:

buildDunePackage rec {
buildDunePackage {
  pname = "opam-repository";

  inherit (opam-format) src version;
+1 −1
Original line number Diff line number Diff line
{ lib, buildDunePackage, opam, opam-repository, spdx_licenses }:

buildDunePackage rec {
buildDunePackage {
  pname = "opam-state";

  inherit (opam) src version;
+3 −3
Original line number Diff line number Diff line
@@ -6,11 +6,11 @@ assert lib.versionAtLeast ocaml.version "4.08.0";

stdenv.mkDerivation {
  pname = "opam";
  version = "2.2.0";
  version = "2.3.0";

  src = fetchurl {
    url = "https://github.com/ocaml/opam/releases/download/2.2.0/opam-full-2.2.0-2.tar.gz";
    sha256 = "459ed64e6643f05c677563a000e3baa05c76ce528064e9cb9ce6db49fff37c97";
    url = "https://github.com/ocaml/opam/releases/download/2.3.0/opam-full-2.3.0.tar.gz";
    hash = "sha256-UGunaGXcMVtn35qonnq9XBqJen8KkteyaUl0/cUys0Y=";
  };

  strictDeps = true;
Loading