{libmamba,mamba-cpp}: 2.0.5 -> 2.1.0 (#396567)

authored by Arne Keller and committed by GitHub 62088f77 d4afb702

+9 -6
+3 -3
pkgs/by-name/li/libmamba/package.nix
··· 21 21 22 22 stdenv.mkDerivation (finalAttrs: { 23 23 pname = "libmamba"; 24 - version = "2.0.5"; 24 + version = "2.1.0"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "mamba-org"; 28 28 repo = "mamba"; 29 - rev = "libmamba-${finalAttrs.version}"; 30 - hash = "sha256-o5shAmsplJS2WZ4HhAt1U27KqUheVxZTkjlyxR7EYxI="; 29 + tag = finalAttrs.version; 30 + hash = "sha256-7YR3ToPz80I9d1pRNiEaoIacVyaz2mqzdm0h5WGSb2g="; 31 31 }; 32 32 33 33 nativeBuildInputs = [
+6 -3
pkgs/by-name/ma/mamba-cpp/package.nix
··· 13 13 tl-expected, 14 14 libmamba, 15 15 python3, 16 + versionCheckHook, 16 17 }: 17 18 stdenv.mkDerivation rec { 18 19 pname = "mamba-cpp"; 19 - version = "2.0.5"; 20 + version = "2.1.0"; 20 21 21 22 src = fetchFromGitHub { 22 23 owner = "mamba-org"; 23 24 repo = "mamba"; 24 - rev = "micromamba-${version}"; 25 - hash = "sha256-o5shAmsplJS2WZ4HhAt1U27KqUheVxZTkjlyxR7EYxI="; 25 + tag = version; 26 + hash = "sha256-7YR3ToPz80I9d1pRNiEaoIacVyaz2mqzdm0h5WGSb2g="; 26 27 }; 27 28 28 29 nativeBuildInputs = [ cmake ]; ··· 45 46 (lib.cmakeBool "BUILD_SHARED" true) 46 47 (lib.cmakeBool "BUILD_LIBMAMBA" false) 47 48 ]; 49 + 50 + nativeInstallCheckInputs = [ versionCheckHook ]; 48 51 49 52 meta = with lib; { 50 53 description = "Reimplementation of the conda package manager";