1{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
2
3let
4
5 rev = "fe4a83540ec73dfc298f16f027277355470ea9a0";
6
7in import ./generic.nix (args // rec {
8 version = "3.18.y-${rev}";
9
10 modDirVersion = "3.18.7";
11
12 src = fetchurl {
13 url = "https://api.github.com/repos/raspberrypi/linux/tarball/${rev}";
14 name = "linux-raspberrypi-${version}.tar.gz";
15 sha256 = "05gq40f038hxjqd3sdb1914g2bzw533dyxy59sgdpybs8801x2vb";
16 };
17
18 features.iwlwifi = true;
19
20 extraMeta.hydraPlatforms = [];
21})