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