summary refs log tree commit diff
path: root/pkgs/tools/filesystems/bcachefs-tools
diff options
context:
space:
mode:
authorOkina Matara <okinan@protonmail.com>2020-11-28 18:02:40 -0600
committerOkina Matara <okinan@protonmail.com>2020-11-28 18:02:40 -0600
commit9bf997125cd6c9540ea116980e3f2453efa7eb7d (patch)
tree82b20b7689dc71e2cf1409b32949290cfbff580d /pkgs/tools/filesystems/bcachefs-tools
parentf872c5fee4a9bdd7df355f584b66b5685e8ab2b5 (diff)
downloadnixpkgs-9bf997125cd6c9540ea116980e3f2453efa7eb7d.tar
nixpkgs-9bf997125cd6c9540ea116980e3f2453efa7eb7d.tar.gz
nixpkgs-9bf997125cd6c9540ea116980e3f2453efa7eb7d.tar.bz2
nixpkgs-9bf997125cd6c9540ea116980e3f2453efa7eb7d.tar.lz
nixpkgs-9bf997125cd6c9540ea116980e3f2453efa7eb7d.tar.xz
nixpkgs-9bf997125cd6c9540ea116980e3f2453efa7eb7d.tar.zst
nixpkgs-9bf997125cd6c9540ea116980e3f2453efa7eb7d.zip
bcachefs-tools: 2020-08-25 -> 2020-11-17
Diffstat (limited to 'pkgs/tools/filesystems/bcachefs-tools')
-rw-r--r--pkgs/tools/filesystems/bcachefs-tools/default.nix26
1 files changed, 7 insertions, 19 deletions
diff --git a/pkgs/tools/filesystems/bcachefs-tools/default.nix b/pkgs/tools/filesystems/bcachefs-tools/default.nix
index ee2af363a56..5b2a4e32242 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";