2022-06-23 21:51:01 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
|
|
|
, cli11
|
|
|
|
, cmake
|
|
|
|
, curl
|
|
|
|
, ghc_filesystem
|
|
|
|
, libarchive
|
|
|
|
, libsolv
|
|
|
|
, libyamlcpp
|
|
|
|
, nlohmann_json
|
|
|
|
, python3
|
|
|
|
, reproc
|
|
|
|
, spdlog
|
|
|
|
, termcolor
|
|
|
|
, tl-expected
|
2021-07-04 18:28:28 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
libsolv' = libsolv.overrideAttrs (oldAttrs: {
|
|
|
|
cmakeFlags = oldAttrs.cmakeFlags ++ [
|
2021-08-22 19:19:47 +00:00
|
|
|
"-DENABLE_CONDA=true"
|
2021-07-04 18:28:28 +00:00
|
|
|
];
|
2021-08-22 19:19:47 +00:00
|
|
|
|
|
|
|
patches = [
|
2022-06-23 21:51:01 +00:00
|
|
|
# Apply the same patch as in the "official" boa-forge build:
|
|
|
|
# https://github.com/mamba-org/boa-forge/tree/master/libsolv
|
2021-08-22 19:19:47 +00:00
|
|
|
(fetchpatch {
|
2021-12-23 22:36:41 +00:00
|
|
|
url = "https://raw.githubusercontent.com/mamba-org/boa-forge/20530f80e2e15012078d058803b6e2c75ed54224/libsolv/conda_variant_priorization.patch";
|
2021-08-22 19:19:47 +00:00
|
|
|
sha256 = "1iic0yx7h8s662hi2jqx68w5kpyrab4fr017vxd4wyxb6wyk35dd";
|
|
|
|
})
|
2021-12-07 23:30:52 +00:00
|
|
|
];
|
2021-07-04 18:28:28 +00:00
|
|
|
});
|
2022-02-24 11:19:11 +00:00
|
|
|
|
|
|
|
spdlog' = spdlog.overrideAttrs (oldAttrs: {
|
|
|
|
# Required for header files. See alse:
|
|
|
|
# https://github.com/gabime/spdlog/pull/1241 (current solution)
|
|
|
|
# https://github.com/gabime/spdlog/issues/1897 (previous solution)
|
|
|
|
cmakeFlags = oldAttrs.cmakeFlags ++ [
|
|
|
|
"-DSPDLOG_FMT_EXTERNAL=OFF"
|
|
|
|
];
|
|
|
|
});
|
2021-07-04 18:28:28 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "micromamba";
|
2022-09-10 00:37:42 +00:00
|
|
|
version = "0.25.0";
|
2021-07-04 18:28:28 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mamba-org";
|
|
|
|
repo = "mamba";
|
2022-05-18 18:16:21 +00:00
|
|
|
rev = "micromamba-" + version;
|
2022-09-10 00:37:42 +00:00
|
|
|
sha256 = "sha256-aTScTM1jX1WIrAVkAvp37fMa+05teLJnVdyIwtYq7mY=";
|
2021-07-04 18:28:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
cli11
|
|
|
|
nlohmann_json
|
|
|
|
curl
|
|
|
|
libarchive
|
2021-12-23 22:36:41 +00:00
|
|
|
libyamlcpp
|
2021-07-04 18:28:28 +00:00
|
|
|
libsolv'
|
|
|
|
reproc
|
2022-02-24 11:19:11 +00:00
|
|
|
spdlog'
|
2021-12-23 22:36:41 +00:00
|
|
|
termcolor
|
|
|
|
ghc_filesystem
|
2022-06-23 21:51:01 +00:00
|
|
|
python3
|
|
|
|
tl-expected
|
2021-07-04 18:28:28 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
2021-12-23 22:36:41 +00:00
|
|
|
"-DBUILD_LIBMAMBA=ON"
|
|
|
|
"-DBUILD_SHARED=ON"
|
|
|
|
"-DBUILD_MICROMAMBA=ON"
|
|
|
|
# "-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON"
|
2021-07-04 18:28:28 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Reimplementation of the conda package manager";
|
|
|
|
homepage = "https://github.com/mamba-org/mamba";
|
|
|
|
license = licenses.bsd3;
|
2022-06-24 12:01:02 +00:00
|
|
|
platforms = platforms.all;
|
2021-07-04 18:28:28 +00:00
|
|
|
maintainers = with maintainers; [ mausch ];
|
|
|
|
};
|
|
|
|
}
|