3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/os-specific/linux/kernel/linux-4.13.nix

12 lines
352 B
Nix
Raw Normal View History

2017-09-04 00:41:44 +01:00
{ stdenv, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
2017-10-27 12:48:05 +01:00
version = "4.13.10";
2017-09-04 00:41:44 +01:00
extraMeta.branch = "4.13";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
2017-10-27 12:48:05 +01:00
sha256 = "0c33v0y4hyklhz7i00sjrj2cpn6zlwc7qjj7w2zzxmnr9yn90c6x";
2017-09-04 00:41:44 +01:00
};
} // (args.argsOverride or {}))