summary refs log blame commit diff
path: root/pkgs/os-specific/linux/kernel/linux-testing-bcachefs.nix
blob: fa5729baf73a5c0d5d1f2b74c9e73f1b06d195f7 (plain) (tree)
1
2
3
4
5
6
7
                                                                                  
 
                     
                                                                                   

                                
 





                                                                   
 
                                
 







                                                                             
{ lib, buildPackages, fetchFromGitHub, fetchpatch, perl, buildLinux, ... } @ args:

buildLinux (args // {
  # NOTE: bcachefs-tools should be updated simultaneously to preserve compatibility
  version = "5.13.0-2021.10.01";
  modDirVersion = "5.13.0";

  src = fetchFromGitHub {
    owner = "koverstreet";
    repo = "bcachefs";
    rev = "4114ced1db465b8f4e7f4d6a78aa11416a9ab5d9";
    sha256 = "sha256-viFC3HHIcjUTDPvloSKKsz9PuSLyvxfYnrtkVUB79mQ=";
  };

  extraConfig = "BCACHEFS_FS m";

  extraMeta = {
    branch = "master";
    hydraPlatforms = []; # Should the testing kernels ever be built on Hydra?
    maintainers = with lib.maintainers; [ davidak chiiruno ];
    platforms = [ "x86_64-linux" ];
  };

} // (args.argsOverride or {}))