Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
82 lines
2.2 KiB
Nix
82 lines
2.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchgit,
|
|
pkg-config,
|
|
util-linux,
|
|
bash,
|
|
udevCheckHook,
|
|
nixosTests,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bcache-tools";
|
|
version = "1.1";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.kernel.org/pub/scm/linux/kernel/git/colyli/bcache-tools.git";
|
|
rev = "bcache-tools-${version}";
|
|
hash = "sha256-8BiHC8qxk4otFPyKnvGNk57JSZytEOy51AGertWo2O0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
udevCheckHook
|
|
];
|
|
buildInputs = [ util-linux ];
|
|
|
|
doInstallCheck = true;
|
|
|
|
prePatch = ''
|
|
# * Remove distro specific install rules which are not used in NixOS.
|
|
# * Remove binaries for udev which are not needed on modern systems.
|
|
sed -e "/INSTALL.*initramfs\/hook/d" \
|
|
-e "/INSTALL.*initcpio\/install/d" \
|
|
-e "/INSTALL.*dracut\/module-setup.sh/d" \
|
|
-e "/INSTALL.*probe-bcache/d" \
|
|
-e "s/pkg-config/$PKG_CONFIG/" \
|
|
-i Makefile
|
|
# * Remove probe-bcache which is handled by util-linux
|
|
sed -e "/probe-bcache/d" \
|
|
-i 69-bcache.rules
|
|
# * Replace bcache-register binary with a write to sysfs
|
|
substituteInPlace 69-bcache.rules \
|
|
--replace-fail "bcache-register \$tempnode" "${bash}/bin/sh -c 'echo \$tempnode > /sys/fs/bcache/register'"
|
|
'';
|
|
|
|
makeFlags = [
|
|
"PREFIX="
|
|
"DESTDIR=$(out)"
|
|
];
|
|
|
|
preInstall = ''
|
|
mkdir -p "$out/sbin" "$out/lib/udev/rules.d" "$out/share/man/man8"
|
|
'';
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) bcache;
|
|
};
|
|
|
|
meta = {
|
|
description = "User-space tools required for bcache (Linux block layer cache)";
|
|
longDescription = ''
|
|
Bcache is a Linux kernel block layer cache. It allows one or more fast
|
|
disk drives such as flash-based solid state drives (SSDs) to act as a
|
|
cache for one or more slower hard disk drives.
|
|
|
|
This package contains the required user-space tools.
|
|
|
|
User documentation is in Documentation/bcache.txt in the Linux kernel
|
|
tree.
|
|
'';
|
|
homepage = "https://www.kernel.org/doc/html/latest/admin-guide/bcache.html";
|
|
license = lib.licenses.gpl2Only;
|
|
maintainers = with lib.maintainers; [
|
|
bjornfor
|
|
pineapplehunter
|
|
];
|
|
mainProgram = "bcache-tools";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|