2019-04-26 06:11:19 -07:00
|
|
|
{ stdenv, buildPackages, fetchgit, fetchpatch, perl, buildLinux, ... } @ args:
|
2017-08-31 03:17:54 -07:00
|
|
|
|
2018-01-28 10:50:18 -08:00
|
|
|
buildLinux (args // rec {
|
2019-07-14 05:56:06 -07:00
|
|
|
version = "5.1.2019.07.13";
|
2019-07-12 05:38:21 -07:00
|
|
|
modDirVersion = "5.1.0";
|
2017-08-31 03:17:54 -07:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://evilpiepirate.org/git/bcachefs.git";
|
2019-07-14 05:56:06 -07:00
|
|
|
rev = "22776fe9902b0b06d6aa18cd4c7f0c5ad35a95fa";
|
|
|
|
sha256 = "0ly4vxawj8skh55c541zll3b8g6igiaq7aj33fklfjh0icmgzs60";
|
2017-08-31 03:17:54 -07:00
|
|
|
};
|
|
|
|
|
2018-08-06 06:58:04 -07:00
|
|
|
extraConfig = "BCACHEFS_FS m";
|
2017-08-31 03:17:54 -07:00
|
|
|
|
2018-08-06 06:58:04 -07:00
|
|
|
extraMeta = {
|
|
|
|
branch = "master";
|
|
|
|
hydraPlatforms = []; # Should the testing kernels ever be built on Hydra?
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ davidak chiiruno ];
|
2018-08-31 19:19:24 -07:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2018-08-06 06:58:04 -07:00
|
|
|
};
|
2017-08-31 03:17:54 -07:00
|
|
|
|
|
|
|
} // (args.argsOverride or {}))
|