mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 12:44:44 +00:00
73 lines
1.4 KiB
Nix
73 lines
1.4 KiB
Nix
{
|
|
bzip2,
|
|
cli11,
|
|
cmake,
|
|
lib,
|
|
libmamba,
|
|
makeWrapper,
|
|
msgpack-c,
|
|
nlohmann_json,
|
|
python3,
|
|
reproc,
|
|
spdlog,
|
|
stdenv,
|
|
tl-expected,
|
|
versionCheckHook,
|
|
yaml-cpp,
|
|
zstd,
|
|
# runtime options
|
|
defaultEnvPath ? "~/.mamba/envs",
|
|
defaultPkgPath ? "~/.mamba/pkgs",
|
|
defaultRootPath ? "~/.mamba",
|
|
}:
|
|
stdenv.mkDerivation {
|
|
pname = "mamba-cpp";
|
|
inherit (libmamba) version src;
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
makeWrapper
|
|
];
|
|
|
|
buildInputs = [
|
|
bzip2
|
|
cli11
|
|
libmamba
|
|
msgpack-c
|
|
nlohmann_json
|
|
python3
|
|
reproc
|
|
spdlog
|
|
tl-expected
|
|
yaml-cpp
|
|
zstd
|
|
];
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeBool "BUILD_MAMBA" true)
|
|
(lib.cmakeBool "BUILD_SHARED" true)
|
|
(lib.cmakeBool "BUILD_LIBMAMBA" false)
|
|
];
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/mamba \
|
|
--set-default CONDA_ENVS_PATH '${defaultEnvPath}' \
|
|
--set-default CONDA_PKGS_DIRS '${defaultPkgPath}' \
|
|
--set-default MAMBA_ROOT_PREFIX '${defaultRootPath}'
|
|
'';
|
|
|
|
__structuredAttrs = true;
|
|
strictDeps = true;
|
|
|
|
meta = {
|
|
description = "Reimplementation of the conda package manager";
|
|
homepage = "https://github.com/mamba-org/mamba";
|
|
license = lib.licenses.bsd3;
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
|
maintainers = with lib.maintainers; [ klchen0112 ];
|
|
mainProgram = "mamba";
|
|
};
|
|
}
|