2019-04-26 06:11:19 -07:00
|
|
|
{ stdenv, buildPackages, fetchgit, fetchpatch, perl, buildLinux, ... } @ args:
|
2017-08-31 03:17:54 -07:00
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
buildLinux (args // {
|
2020-04-06 07:29:11 -07:00
|
|
|
version = "5.3.2020.04.04";
|
2019-10-18 13:49:09 -07:00
|
|
|
modDirVersion = "5.3.0";
|
2017-08-31 03:17:54 -07:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://evilpiepirate.org/git/bcachefs.git";
|
2020-04-06 07:29:11 -07:00
|
|
|
rev = "a27d7265e75f6d65c2b972ce4ac27abfc153c230";
|
|
|
|
sha256 = "0wnjl4xs7073d5ipcsplv5qpcxb7zpfqd5gqvh3mhqc5j3qn816x";
|
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 {}))
|