1{ stdenv, buildPackages, hostPlatform, fetchgit, perl, buildLinux, ... } @ args:
2
3buildLinux (args // rec {
4 version = "4.15.2018.02.09";
5 modDirVersion = "4.15.0";
6 extraMeta.branch = "master";
7 extraMeta.maintainers = [ stdenv.lib.maintainers.davidak ];
8
9 src = fetchgit {
10 url = "https://evilpiepirate.org/git/bcachefs.git";
11 rev = "4506cd5ead31209a6a646c2412cbc7be735ebda4";
12 sha256 = "0fcyf3y27k2lga5na4dhdyc47br840gkqynv8gix297pqxgidrib";
13 };
14
15 extraConfig = ''
16 BCACHEFS_FS m
17 '';
18
19 # Should the testing kernels ever be built on Hydra?
20 extraMeta.hydraPlatforms = [];
21
22} // (args.argsOverride or {}))