2018-08-20 20:43:41 +02:00
|
|
|
{ stdenv, buildPackages, fetchgit, perl, buildLinux, ... } @ args:
|
2017-08-31 12:17:54 +02:00
|
|
|
|
2018-01-28 19:50:18 +01:00
|
|
|
buildLinux (args // rec {
|
2019-02-17 04:09:12 +01:00
|
|
|
version = "4.20.2019.02.20";
|
2019-01-28 02:46:55 +01:00
|
|
|
modDirVersion = "4.20.0";
|
2017-08-31 12:17:54 +02:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://evilpiepirate.org/git/bcachefs.git";
|
2019-02-17 04:09:12 +01:00
|
|
|
rev = "2d1aed5672ad55f86544cb5352560d5395012136";
|
|
|
|
sha256 = "0b4swx0z36y4gglkjwxn3x1q0wknv4k2lbprhbing3ms0d45z9f2";
|
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?
|
|
|
|
maintainers = with stdenv.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 {}))
|