Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 11 lines 356 B view raw
1{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, ... } @ args: 2 3buildLinux (args // rec { 4 version = "4.9.147"; 5 extraMeta.branch = "4.9"; 6 7 src = fetchurl { 8 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 9 sha256 = "10hxxcwa9lgsdz0k6229fly9r7iyqv9xq838zx8s7bd12qrrfb59"; 10 }; 11} // (args.argsOverride or {}))