mirror of
https://github.com/nix-community/linuxkit-nix.git
synced 2024-11-27 00:35:03 +03:00
13 lines
466 B
Nix
13 lines
466 B
Nix
{ stdenv, fetchurl, linux_4_9, linuxManualConfig, hostPlatform }:
|
|
|
|
linuxManualConfig {
|
|
inherit stdenv hostPlatform;
|
|
inherit (linux_4_9) src;
|
|
version = "${linux_4_9.version}-linuxkit";
|
|
configfile = fetchurl {
|
|
url = https://raw.githubusercontent.com/linuxkit/linuxkit/cb1c74977297b326638daeb824983f0a2e13fdf2/kernel/kernel_config-4.9.x-x86_64;
|
|
sha256 = "1lpz2q5mhvq7g5ys2s2zynibbxczqzscxbwxfbhb4mkkpps8dv08";
|
|
};
|
|
allowImportFromDerivation = true;
|
|
}
|