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

                              




                                                             

                                                                    





                  



                                                      
{ stdenv, buildPackages, hostPlatform, fetchgit, perl, buildLinux, ... } @ args:

buildLinux (args // rec {
  version = "4.15.2018.02.09";
  modDirVersion = "4.15.0";
  extraMeta.branch = "master";
  extraMeta.maintainers = [ stdenv.lib.maintainers.davidak ];

  src = fetchgit {
    url = "https://evilpiepirate.org/git/bcachefs.git";
    rev = "4506cd5ead31209a6a646c2412cbc7be735ebda4";
    sha256 = "0fcyf3y27k2lga5na4dhdyc47br840gkqynv8gix297pqxgidrib";
  };

  extraConfig = ''
    BCACHEFS_FS m
  '';

  # Should the testing kernels ever be built on Hydra?
  extraMeta.hydraPlatforms = [];

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