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

let

  rev = "7849605f5a";

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

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

  features.iwlwifi = true;

  extraMeta.hydraPlatforms = [];
})