21 libsolv' = libsolv.overrideAttrs (oldAttrs: {
22 cmakeFlags = oldAttrs.cmakeFlags ++ [
27 # Apply the same patch as in the "official" boa-forge build:
28 # https://github.com/mamba-org/boa-forge/tree/master/libsolv
30 url = "https://raw.githubusercontent.com/mamba-org/boa-forge/20530f80e2e15012078d058803b6e2c75ed54224/libsolv/conda_variant_priorization.patch";
31 sha256 = "1iic0yx7h8s662hi2jqx68w5kpyrab4fr017vxd4wyxb6wyk35dd";
36 spdlog' = spdlog.overrideAttrs (oldAttrs: {
37 # Required for header files. See alse:
38 # https://github.com/gabime/spdlog/pull/1241 (current solution)
39 # https://github.com/gabime/spdlog/issues/1897 (previous solution)
40 cmakeFlags = oldAttrs.cmakeFlags ++ [
41 "-DSPDLOG_FMT_EXTERNAL=OFF"
45 stdenv.mkDerivation rec {
49 src = fetchFromGitHub {
52 rev = "micromamba-" + version;
53 sha256 = "sha256-aTScTM1jX1WIrAVkAvp37fMa+05teLJnVdyIwtYq7mY=";
56 nativeBuildInputs = [ cmake ];
76 "-DBUILD_MICROMAMBA=ON"
77 # "-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON"
81 description = "Reimplementation of the conda package manager";
82 homepage = "https://github.com/mamba-org/mamba";
83 license = licenses.bsd3;
84 platforms = platforms.all;
85 maintainers = with maintainers; [ mausch ];