2021-01-25 09:26:54 +01:00
|
|
|
{ lib, buildPackages, fetchFromGitHub, fetchpatch, perl, buildLinux, ... } @ args:
|
2017-08-31 05:17:54 -05:00
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
buildLinux (args // {
|
2020-11-28 18:02:00 -06:00
|
|
|
version = "5.9.0-2020.11.20";
|
|
|
|
|
modDirVersion = "5.9.0";
|
2017-08-31 05:17:54 -05:00
|
|
|
|
2020-09-09 19:47:20 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "koverstreet";
|
|
|
|
|
repo = "bcachefs";
|
2021-01-26 14:26:32 +01:00
|
|
|
# commit does not exist on any branch on the target repository
|
2020-11-28 18:02:00 -06:00
|
|
|
rev = "6a505b63ed3003faf5000f19fd08bbd477d93fbc";
|
|
|
|
|
sha256 = "1rf34gzv9npafp1c3i6lymk3b0gnqp4rb0wl33pw6yrpgnsry3cc";
|
2017-08-31 05:17:54 -05:00
|
|
|
};
|
|
|
|
|
|
2018-08-06 08:58:04 -05:00
|
|
|
extraConfig = "BCACHEFS_FS m";
|
2017-08-31 05:17:54 -05:00
|
|
|
|
2018-08-06 08:58:04 -05:00
|
|
|
extraMeta = {
|
|
|
|
|
branch = "master";
|
|
|
|
|
hydraPlatforms = []; # Should the testing kernels ever be built on Hydra?
|
2021-01-15 21:45:37 +07:00
|
|
|
maintainers = with lib.maintainers; [ davidak chiiruno ];
|
2018-08-31 21:19:24 -05:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2018-08-06 08:58:04 -05:00
|
|
|
};
|
2017-08-31 05:17:54 -05:00
|
|
|
|
|
|
|
|
} // (args.argsOverride or {}))
|