2019-04-26 13:11:19 +00:00
|
|
|
{ stdenv, buildPackages, fetchgit, fetchpatch, perl, buildLinux, ... } @ args:
|
2017-08-31 10:17:54 +00:00
|
|
|
|
2018-01-28 18:50:18 +00:00
|
|
|
buildLinux (args // rec {
|
2019-08-24 02:38:20 +00:00
|
|
|
version = "5.1.2019.08.21";
|
2019-07-12 12:38:21 +00:00
|
|
|
modDirVersion = "5.1.0";
|
2017-08-31 10:17:54 +00:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://evilpiepirate.org/git/bcachefs.git";
|
2019-08-24 02:38:20 +00:00
|
|
|
rev = "ece184f718c2b678738bc2c42906e90eeb8ba7dc";
|
|
|
|
sha256 = "08cbisgcww8fklpxwqkm2c8ddz0mm7v11ycp7ch0kalwdv2f81lr";
|
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?
|
|
|
|
maintainers = with stdenv.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 {}))
|