nixpkgs/pkgs/tools/package-management/micromamba/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

80 lines
1.6 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, bzip2
, cli11
, cmake
, curl
, ghc_filesystem
, libarchive
, libsolv
, yaml-cpp
, nlohmann_json
, python3
, reproc
, spdlog
, 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 = [
# 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
});
in
stdenv.mkDerivation rec {
pname = "micromamba";
2024-04-12 05:08:41 +00:00
version = "1.5.8";
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;
2024-04-12 05:08:41 +00:00
hash = "sha256-sxZDlMFoMLq2EAzwBVO++xvU1C30JoIoZXEX/sqkXS0=";
2021-07-04 18:28:28 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [
bzip2
2021-07-04 18:28:28 +00:00
cli11
nlohmann_json
curl
libarchive
yaml-cpp
2021-07-04 18:28:28 +00:00
libsolv'
reproc
spdlog
2021-12-23 22:36:41 +00:00
ghc_filesystem
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 ];
2023-11-22 07:28:21 +00:00
mainProgram = "micromamba";
2021-07-04 18:28:28 +00:00
};
}