Skip to content

Commit 62088f7

Browse files
{libmamba,mamba-cpp}: 2.0.5 -> 2.1.0 (#396567)
2 parents d4afb70 + 59b3409 commit 62088f7

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

pkgs/by-name/li/libmamba/package.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121

2222
stdenv.mkDerivation (finalAttrs: {
2323
pname = "libmamba";
24-
version = "2.0.5";
24+
version = "2.1.0";
2525

2626
src = fetchFromGitHub {
2727
owner = "mamba-org";
2828
repo = "mamba";
29-
rev = "libmamba-${finalAttrs.version}";
30-
hash = "sha256-o5shAmsplJS2WZ4HhAt1U27KqUheVxZTkjlyxR7EYxI=";
29+
tag = finalAttrs.version;
30+
hash = "sha256-7YR3ToPz80I9d1pRNiEaoIacVyaz2mqzdm0h5WGSb2g=";
3131
};
3232

3333
nativeBuildInputs = [

pkgs/by-name/ma/mamba-cpp/package.nix

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,17 @@
1313
tl-expected,
1414
libmamba,
1515
python3,
16+
versionCheckHook,
1617
}:
1718
stdenv.mkDerivation rec {
1819
pname = "mamba-cpp";
19-
version = "2.0.5";
20+
version = "2.1.0";
2021

2122
src = fetchFromGitHub {
2223
owner = "mamba-org";
2324
repo = "mamba";
24-
rev = "micromamba-${version}";
25-
hash = "sha256-o5shAmsplJS2WZ4HhAt1U27KqUheVxZTkjlyxR7EYxI=";
25+
tag = version;
26+
hash = "sha256-7YR3ToPz80I9d1pRNiEaoIacVyaz2mqzdm0h5WGSb2g=";
2627
};
2728

2829
nativeBuildInputs = [ cmake ];
@@ -46,6 +47,8 @@ stdenv.mkDerivation rec {
4647
(lib.cmakeBool "BUILD_LIBMAMBA" false)
4748
];
4849

50+
nativeInstallCheckInputs = [ versionCheckHook ];
51+
4952
meta = with lib; {
5053
description = "Reimplementation of the conda package manager";
5154
homepage = "https://github.com/mamba-org/mamba";

0 commit comments

Comments
 (0)