about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-rpi.nix
blob: 02b29708131594b922097764c8eb5c1672cd7b9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, ... } @ args:

let

  rev = "fe4a83540ec73dfc298f16f027277355470ea9a0";

in import ./generic.nix (args // rec {
  version = "3.18.y-${rev}";

  modDirVersion = "3.18.7";

  src = fetchurl {
    url = "https://api.github.com/repos/raspberrypi/linux/tarball/${rev}";
    name = "linux-raspberrypi-${version}.tar.gz";
    sha256 = "05gq40f038hxjqd3sdb1914g2bzw533dyxy59sgdpybs8801x2vb";
  };

  features.iwlwifi = true;

  extraMeta.hydraPlatforms = [];
})