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-01-28 02:46:55 +01:00
|
|
|
version = "4.20.2019.01.23";
|
|
|
|
modDirVersion = "4.20.0";
|
2017-08-31 12:17:54 +02:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://evilpiepirate.org/git/bcachefs.git";
|
2019-01-28 02:46:55 +01:00
|
|
|
rev = "99750eab4d583132cf61f071082c7cf21f5295c0";
|
|
|
|
sha256 = "05wg9w5f68qg02yrciir9h1wx448869763hg3w7j23wc2qywhwqb";
|
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 {}))
|