2019-04-26 14:11:19 +01:00
|
|
|
{ stdenv, buildPackages, fetchgit, fetchpatch, perl, buildLinux, ... } @ args:
|
2017-08-31 11:17:54 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
buildLinux (args // {
|
2020-04-06 15:29:11 +01:00
|
|
|
version = "5.3.2020.04.04";
|
2019-10-18 21:49:09 +01:00
|
|
|
modDirVersion = "5.3.0";
|
2017-08-31 11:17:54 +01:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://evilpiepirate.org/git/bcachefs.git";
|
2020-04-06 15:29:11 +01:00
|
|
|
rev = "a27d7265e75f6d65c2b972ce4ac27abfc153c230";
|
|
|
|
sha256 = "0wnjl4xs7073d5ipcsplv5qpcxb7zpfqd5gqvh3mhqc5j3qn816x";
|
2017-08-31 11:17:54 +01:00
|
|
|
};
|
|
|
|
|
2018-08-06 14:58:04 +01:00
|
|
|
extraConfig = "BCACHEFS_FS m";
|
2017-08-31 11:17:54 +01:00
|
|
|
|
2018-08-06 14:58:04 +01:00
|
|
|
extraMeta = {
|
|
|
|
branch = "master";
|
|
|
|
hydraPlatforms = []; # Should the testing kernels ever be built on Hydra?
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ davidak chiiruno ];
|
2018-09-01 03:19:24 +01:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2018-08-06 14:58:04 +01:00
|
|
|
};
|
2017-08-31 11:17:54 +01:00
|
|
|
|
|
|
|
} // (args.argsOverride or {}))
|