mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
0828e2d8c3
Want to get this out of here for 18.09, so it can be deprecated thereafter.
12 lines
342 B
Nix
12 lines
342 B
Nix
{ stdenv, buildPackages, fetchurl, perl, buildLinux, ... } @ args:
|
|
|
|
buildLinux (args // rec {
|
|
version = "4.4.153";
|
|
extraMeta.branch = "4.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
|
|
sha256 = "00jlajwbq7w5cxzzaa5mib5qvihqab3ysfq401b71ji2bi8ma8qg";
|
|
};
|
|
} // (args.argsOverride or {}))
|