0be87c7979
I merged master into staging-next but accidentally pushed it to master. This should get us back to87a19e9048
. This reverts commitac241fb7a5
, reversing changes made to76a439239e
.
11 lines
342 B
Nix
11 lines
342 B
Nix
{ stdenv, buildPackages, fetchurl, perl, buildLinux, ... } @ args:
|
|
|
|
buildLinux (args // rec {
|
|
version = "4.4.212";
|
|
extraMeta.branch = "4.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
|
|
sha256 = "0mx3qyj6w6h7gw7drsfsgl4iyz1695sjnf9hqh4kczci48kw5rj7";
|
|
};
|
|
} // (args.argsOverride or {}))
|