about summary refs log blame commit diff
path: root/linux.nix
blob: 4199da711bc34cb67081188ea105aa55b7875c80 (plain) (tree)






















                                  
{ pkgs ? import <nixpkgs> {} }:

pkgs.stdenv.mkDerivation {
  name = "linux-kernel-build";
  nativeBuildInputs = with pkgs; [
    getopt
    flex
    bison
    gcc
    gnumake
    bc
    pkg-config
    binutils
  ];
  buildInputs = with pkgs; [
    elfutils
    ncurses
    openssl
    zlib
    gdb
  ];
}