add new submodules and nix build env

This commit is contained in:
stubbfel
2018-03-28 16:18:44 +02:00
parent e5b5e71af5
commit 7d3f2a8beb
4 changed files with 35 additions and 24 deletions

Submodule dev-utility/CMake-Module/BuildKernelModule added at fc86d1e5f7

View File

@@ -0,0 +1,15 @@
with import <nixpkgs> {};
stdenv.mkDerivation rec {
name = "kttd-buid-env";
env = buildEnv { name = name; paths = buildInputs; };
buildInputs = [
gcc
cmake
elfutils
];
hardeningDisable = [ "pic" ];
}