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