inversepath/usbarmory: fix evaluation

This commit is contained in:
Yegor Timoshenko
2017-12-24 17:21:43 +00:00
parent 08e080ae11
commit a433fd730f
8 changed files with 1073 additions and 3286 deletions

View File

@@ -0,0 +1,20 @@
{ stdenv, buildLinux, fetchurl }:
buildLinux {
inherit stdenv;
version = "4.4.0";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-4.4.tar.xz";
sha256 = "401d7c8fef594999a460d10c72c5a94e9c2e1022f16795ec51746b0d165418b2";
};
configfile = ./kernel.config;
kernelPatches = [{
patch = ./usbarmory-dts.patch;
name = "usbarmory-dts";
}];
allowImportFromDerivation = true;
}