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