initial setup

Buildscripts, nix shell, skeleton project
This commit is contained in:
outfoxxed 2023-10-27 03:02:07 -07:00
commit f5c43c4fb4
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
11 changed files with 284 additions and 0 deletions

18
package.nix Normal file
View file

@ -0,0 +1,18 @@
{ cmake, ninja, llvmPackages_16, clang16Stdenv }:
clang16Stdenv.mkDerivation {
pname = "tidyfox";
version = "0.1.0";
src = ./.;
nativeBuildInputs = [
cmake
ninja
];
buildInputs = with llvmPackages_16; [
llvm.dev
clang-unwrapped.dev
];
buildPhase = "ninjaBuildPhase";
}