nixpkgs/pkgs/tools/filesystems/bcachefs-tools/default.nix

50 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, attr, libuuid, libscrypt, libsodium, keyutils
, liburcu, zlib, libaio, udev, zstd, lz4, valgrind, python3Packages
, fuseSupport ? false, fuse3 ? null }:
assert fuseSupport -> fuse3 != null;
2017-05-07 16:53:12 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "bcachefs-tools";
version = "2020-11-17";
2017-05-07 16:53:12 +00:00
src = fetchFromGitHub {
owner = "koverstreet";
repo = "bcachefs-tools";
rev = "41bec63b265a38dd9fa168b6042ea5bf07135048";
sha256 = "1y3187kpw1bmnl97isv28k2sw8cmrnsn31a0dw745adwm0n7z6fj";
2017-05-07 16:53:12 +00:00
};
postPatch = ''
substituteInPlace Makefile \
--replace "pytest-3" "pytest --verbose" \
--replace "INITRAMFS_DIR=/etc/initramfs-tools" \
"INITRAMFS_DIR=${placeholder "out"}/etc/initramfs-tools"
'';
2017-05-07 16:53:12 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [
libuuid libscrypt libsodium keyutils liburcu zlib libaio
zstd lz4 python3Packages.pytest udev valgrind
2021-01-15 09:19:50 +00:00
] ++ lib.optional fuseSupport fuse3;
doCheck = false; # needs bcachefs module loaded on builder
checkFlags = [ "BCACHEFS_TEST_USE_VALGRIND=no" ];
checkInputs = [ valgrind ];
2021-01-15 09:19:50 +00:00
preCheck = lib.optionalString fuseSupport ''
rm tests/test_fuse.py
'';
installFlags = [ "PREFIX=${placeholder "out"}" ];
meta = with lib; {
2017-05-07 16:53:12 +00:00
description = "Tool for managing bcachefs filesystems";
homepage = "https://bcachefs.org/";
2017-05-07 16:53:12 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ davidak chiiruno ];
2017-05-07 16:53:12 +00:00
platforms = platforms.linux;
};
}