Unverified Commit b3b6110e authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

{libmamba,mamba-cpp}: 2.1.1 -> 2.3.0 (#428612)

parents aeaa19c4 113cd624
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
  lib,
  stdenv,
  cmake,
  fmt,
  fmt_11,
  spdlog,
  tl-expected,
  nlohmann_json,
@@ -21,13 +21,13 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "libmamba";
  version = "2.1.1";
  version = "2.3.0";

  src = fetchFromGitHub {
    owner = "mamba-org";
    repo = "mamba";
    tag = finalAttrs.version;
    hash = "sha256-JBwdfYM7J5R7HZyw5kVXwu4FlZUd2QPrsTaGuXnyAJI=";
    hash = "sha256-EwG5pR3nOYffQdK3xIKJztkKLqMi6Hj9fmkihn9pZHE=";
  };

  nativeBuildInputs = [
@@ -36,7 +36,7 @@ stdenv.mkDerivation (finalAttrs: {
  ];

  buildInputs = [
    fmt
    fmt_11
    spdlog
    tl-expected
    nlohmann_json
+2 −10
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchFromGitHub,
  bzip2,
  cmake,
  cli11,
@@ -15,16 +14,9 @@
  python3,
  versionCheckHook,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation {
  pname = "mamba-cpp";
  version = "2.1.1";

  src = fetchFromGitHub {
    owner = "mamba-org";
    repo = "mamba";
    tag = version;
    hash = "sha256-JBwdfYM7J5R7HZyw5kVXwu4FlZUd2QPrsTaGuXnyAJI=";
  };
  inherit (libmamba) version src;

  nativeBuildInputs = [ cmake ];