linux_testing_bcachefs: 4.15.2018.04.14 -> 4.16.2018.08.03

This commit is contained in:
Okina Matara 2018-08-06 08:58:04 -05:00
parent 56ac23a19c
commit d043a30d62

View file

@ -1,22 +1,21 @@
{ stdenv, buildPackages, hostPlatform, fetchgit, perl, buildLinux, ... } @ args:
buildLinux (args // rec {
version = "4.15.2018.04.14";
modDirVersion = "4.15.0";
extraMeta.branch = "master";
extraMeta.maintainers = [ stdenv.lib.maintainers.davidak stdenv.lib.maintainers.chiiruno ];
version = "4.16.2018.08.03";
modDirVersion = "4.16.0";
src = fetchgit {
url = "https://evilpiepirate.org/git/bcachefs.git";
rev = "3b7c824e9330a640312fce1b04537c684c1d602c";
sha256 = "1l5ib28qkhrxggn6zj9b2839543anbxk2ip75yizgzlv9vr5m4pk";
rev = "e7a00a52b57336c04d1043c6fa0a67a7c8301cfb";
sha256 = "1a0kvpazvvh0rfb9hkyr4zw55ndh060j95fvhf2aaaj9qyc7p7wp";
};
extraConfig = ''
BCACHEFS_FS m
'';
extraConfig = "BCACHEFS_FS m";
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
extraMeta = {
branch = "master";
hydraPlatforms = []; # Should the testing kernels ever be built on Hydra?
maintainers = with stdenv.lib.maintainers; [ davidak chiiruno ];
};
} // (args.argsOverride or {}))