added ignores and a default build file

fb-rpc
Claudius Holeksa 2023-01-15 17:38:01 +01:00
parent 4f10da77eb
commit 9ecf425911
2 changed files with 17 additions and 1 deletions

3
.gitignore vendored
View File

@ -74,4 +74,5 @@ vgcore.*
# cache file for ale
.cache
async.plist
*.plist
result

15
default.nix Normal file
View File

@ -0,0 +1,15 @@
with import <nixpkgs> {};
stdenvNoCC.mkDerivation {
name = "forstio";
src = ./.;
nativeBuildInputs = [
scons
clang_14
];
buildInputs = [
gnutls
];
}