summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2020-12-22 11:09:43 -0300
committerGitHub <noreply@github.com>2020-12-22 11:09:43 -0300
commit66902323886e59bec01a68fdc27768e80356eb8a (patch)
treef5884ccbfeaa1b64fa76238e363f452e65a0c164
parent86ff1e45cece6f001cf0971559cdec6d25bb9db7 (diff)
parent9bf997125cd6c9540ea116980e3f2453efa7eb7d (diff)
Merge pull request #104197 from Chiiruno/dev/bcachefs
linux_testing_bcachefs: 5.8.0-2020.09.07 -> 5.9.0-2020.11.17 // bcachefs-tools: 2020-08-25 -> 2020-11-17
-rw-r--r--pkgs/os-specific/linux/kernel/linux-testing-bcachefs.nix8
-rw-r--r--pkgs/tools/filesystems/bcachefs-tools/default.nix26
2 files changed, 11 insertions, 23 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-testing-bcachefs.nix b/pkgs/os-specific/linux/kernel/linux-testing-bcachefs.nix
index 81dcb5d4563b..dd9ce3e080a3 100644
--- a/pkgs/os-specific/linux/kernel/linux-testing-bcachefs.nix
+++ b/pkgs/os-specific/linux/kernel/linux-testing-bcachefs.nix
@@ -1,14 +1,14 @@
{ stdenv, buildPackages, fetchFromGitHub, fetchpatch, perl, buildLinux, ... } @ args:
buildLinux (args // {
- version = "5.8.0-2020.09.07";
- modDirVersion = "5.8.0";
+ version = "5.9.0-2020.11.20";
+ modDirVersion = "5.9.0";
src = fetchFromGitHub {
owner = "koverstreet";
repo = "bcachefs";
- rev = "fb2821e72648f35d3cff61ac26041d634fd1dacf";
- sha256 = "0f9hx6fz27rm8h1lk9868v727klvyzcbw6hcgm5mypbfq1nqirdy";
+ rev = "6a505b63ed3003faf5000f19fd08bbd477d93fbc";
+ sha256 = "1rf34gzv9npafp1c3i6lymk3b0gnqp4rb0wl33pw6yrpgnsry3cc";
};
extraConfig = "BCACHEFS_FS m";
diff --git a/pkgs/tools/filesystems/bcachefs-tools/default.nix b/pkgs/tools/filesystems/bcachefs-tools/default.nix
index ee2af363a566..5b2a4e322421 100644
--- a/pkgs/tools/filesystems/bcachefs-tools/default.nix
+++ b/pkgs/tools/filesystems/bcachefs-tools/default.nix
@@ -6,13 +6,13 @@ assert fuseSupport -> fuse3 != null;
stdenv.mkDerivation {
pname = "bcachefs-tools";
- version = "2020-08-25";
+ version = "2020-11-17";
src = fetchFromGitHub {
owner = "koverstreet";
repo = "bcachefs-tools";
- rev = "487ddeb03c574e902c5b749b4307e87e2150976a";
- sha256 = "1pcid7apxmbl9dyvxcqby3k489wi69k8pl596ddzmkw5gmhgvgid";
+ rev = "41bec63b265a38dd9fa168b6042ea5bf07135048";
+ sha256 = "1y3187kpw1bmnl97isv28k2sw8cmrnsn31a0dw745adwm0n7z6fj";
};
postPatch = ''
@@ -22,11 +22,7 @@ stdenv.mkDerivation {
"INITRAMFS_DIR=${placeholder "out"}/etc/initramfs-tools"
'';
- enableParallelBuilding = true;
-
- nativeBuildInputs = [
- pkgconfig
- ];
+ nativeBuildInputs = [ pkgconfig ];
buildInputs = [
libuuid libscrypt libsodium keyutils liburcu zlib libaio
@@ -34,22 +30,14 @@ stdenv.mkDerivation {
] ++ stdenv.lib.optional fuseSupport fuse3;
doCheck = false; # needs bcachefs module loaded on builder
-
- checkFlags = [
- "BCACHEFS_TEST_USE_VALGRIND=no"
- ];
-
- checkInputs = [
- valgrind
- ];
+ checkFlags = [ "BCACHEFS_TEST_USE_VALGRIND=no" ];
+ checkInputs = [ valgrind ];
preCheck = stdenv.lib.optionalString fuseSupport ''
rm tests/test_fuse.py
'';
- installFlags = [
- "PREFIX=${placeholder "out"}"
- ];
+ installFlags = [ "PREFIX=${placeholder "out"}" ];
meta = with stdenv.lib; {
description = "Tool for managing bcachefs filesystems";