2021-01-25 09:26:54 +01:00
|
|
|
{ lib, buildPackages, fetchFromGitHub, fetchpatch, perl, buildLinux, ... } @ args:
|
2017-08-31 12:17:54 +02:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
buildLinux (args // {
|
2020-11-29 01:02:00 +01:00
|
|
|
version = "5.9.0-2020.11.20";
|
|
|
|
modDirVersion = "5.9.0";
|
2017-08-31 12:17:54 +02: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-29 01:02:00 +01:00
|
|
|
rev = "6a505b63ed3003faf5000f19fd08bbd477d93fbc";
|
|
|
|
sha256 = "1rf34gzv9npafp1c3i6lymk3b0gnqp4rb0wl33pw6yrpgnsry3cc";
|
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?
|
2021-01-15 15:45:37 +01:00
|
|
|
maintainers = with 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 {}))
|