diff options
author | Claudius 'keldu' Holeksa <mail@keldu.de> | 2024-09-23 12:35:27 +0200 |
---|---|---|
committer | Claudius 'keldu' Holeksa <mail@keldu.de> | 2024-09-23 12:35:27 +0200 |
commit | a0d604d029d9222761393ea5d8d9ddde6788b633 (patch) | |
tree | 28e540fb1c2e92e0480cc1aa8e60089b661d31ff | |
parent | 60dd654b13c364e2aac53f2cb76a368d388bf070 (diff) |
Add scons to nix and result to ignore
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | .nix/derivation.nix | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fcfc4a1 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +result* diff --git a/.nix/derivation.nix b/.nix/derivation.nix index b318a46..a927e8d 100644 --- a/.nix/derivation.nix +++ b/.nix/derivation.nix @@ -1,8 +1,13 @@ { stdenv +, scons }: stdenv.mkDerivation { pname = "icosahedrical_destruction"; version = "0.0.0"; src = ./..; + + nativeBuildInputs = [ + scons + ]; } |