Merge pull request #44533 from Chiiruno/dev/bcachefs

linux_testing_bcachefs: 4.15.2018.04.14 -> 4.15.2018.08.03
This commit is contained in:
xeji
2018-08-07 00:37:07 +02:00
committed by GitHub
3 changed files with 22 additions and 33 deletions

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 {}))