5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
123 lines
2.7 KiB
Nix
123 lines
2.7 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
pkg-config,
|
|
libuuid,
|
|
libsodium,
|
|
keyutils,
|
|
liburcu,
|
|
zlib,
|
|
libaio,
|
|
zstd,
|
|
lz4,
|
|
attr,
|
|
udev,
|
|
nixosTests,
|
|
fuse3,
|
|
cargo,
|
|
rustc,
|
|
rustPlatform,
|
|
makeWrapper,
|
|
nix-update-script,
|
|
python3,
|
|
fuseSupport ? false,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "bcachefs-tools";
|
|
version = "1.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "koverstreet";
|
|
repo = "bcachefs-tools";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-nHT18bADESDBHoo9P+J3gGc092hRYs2vaWupgqlkvaA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
cargo
|
|
rustc
|
|
rustPlatform.cargoSetupHook
|
|
rustPlatform.bindgenHook
|
|
makeWrapper
|
|
];
|
|
|
|
buildInputs = [
|
|
libaio
|
|
keyutils
|
|
lz4
|
|
|
|
libsodium
|
|
liburcu
|
|
libuuid
|
|
zstd
|
|
zlib
|
|
attr
|
|
udev
|
|
] ++ lib.optional fuseSupport fuse3;
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
src = finalAttrs.src;
|
|
hash = "sha256-RsRz/nb8L+pL1U4l6RnvqeDFddPvcBFH4wdV7G60pxA=";
|
|
};
|
|
|
|
makeFlags = [
|
|
"PREFIX=${placeholder "out"}"
|
|
"VERSION=${finalAttrs.version}"
|
|
"INITRAMFS_DIR=${placeholder "out"}/etc/initramfs-tools"
|
|
] ++ lib.optional fuseSupport "BCACHEFS_FUSE=1";
|
|
|
|
# FIXME: Try enabling this once the default linux kernel is at least 6.7
|
|
doCheck = false; # needs bcachefs module loaded on builder
|
|
|
|
patches = [
|
|
# code refactoring of bcachefs-tools broke reading passphrases from stdin (vs. terminal)
|
|
# upstream issue https://github.com/koverstreet/bcachefs-tools/issues/261
|
|
(fetchpatch {
|
|
url = "https://github.com/koverstreet/bcachefs-tools/commit/38b0cb721d2a35f5a4af429bc7bd367461f2fa26.patch";
|
|
hash = "sha256-/9reye+Qoa+EMkS+wfdX+KwDeLHHJ/S+Qm7sWl0MtqM=";
|
|
})
|
|
];
|
|
|
|
preCheck = lib.optionalString (!fuseSupport) ''
|
|
rm tests/test_fuse.py
|
|
'';
|
|
checkFlags = [ "BCACHEFS_TEST_USE_VALGRIND=no" ];
|
|
|
|
# Tries to install to the 'systemd-minimal' and 'udev' nix installation paths
|
|
installFlags = [
|
|
"PKGCONFIG_SERVICEDIR=$(out)/lib/systemd/system"
|
|
"PKGCONFIG_UDEVDIR=$(out)/lib/udev"
|
|
];
|
|
|
|
postInstall = ''
|
|
substituteInPlace $out/libexec/bcachefsck_all \
|
|
--replace "/usr/bin/python3" "${python3}/bin/python3"
|
|
'';
|
|
|
|
passthru = {
|
|
tests = {
|
|
smoke-test = nixosTests.bcachefs;
|
|
inherit (nixosTests.installer) bcachefsSimple bcachefsEncrypted bcachefsMulti;
|
|
};
|
|
|
|
updateScript = nix-update-script {};
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "Tool for managing bcachefs filesystems";
|
|
homepage = "https://bcachefs.org/";
|
|
license = lib.licenses.gpl2Only;
|
|
maintainers = with lib.maintainers; [
|
|
davidak
|
|
johnrtitor
|
|
Madouura
|
|
];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|