mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
8525b78d05
`kernel.override { features = ... }` didn't work before, now it works as expected.
24 lines
626 B
Nix
24 lines
626 B
Nix
{ stdenv, hostPlatform, fetchgit, perl, buildLinux, ... } @ args:
|
|
|
|
import ./generic.nix (args // rec {
|
|
version = "4.11.2017.08.23";
|
|
modDirVersion = "4.11.0";
|
|
extraMeta.branch = "master";
|
|
extraMeta.maintainers = [ stdenv.lib.maintainers.davidak ];
|
|
|
|
src = fetchgit {
|
|
url = "https://evilpiepirate.org/git/bcachefs.git";
|
|
rev = "fb8082a13d49397346a04ce4d3904569b0287738";
|
|
sha256 = "18csg2zb4lnhid27h5w95j3g8np29m8y3zfpfgjl1jr2jks64kid";
|
|
};
|
|
|
|
extraConfig = ''
|
|
BCACHEFS_FS m
|
|
'';
|
|
|
|
# Should the testing kernels ever be built on Hydra?
|
|
extraMeta.hydraPlatforms = [];
|
|
|
|
} // (args.argsOverride or {}))
|
|
|