add first version

This commit is contained in:
stubbfel
2018-02-15 20:51:01 +01:00
parent 6b78d8ec3d
commit e274e0a8b1
17 changed files with 657 additions and 293 deletions

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" ];
}