diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-10-27 16:31:40 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-10-27 16:31:40 +0100 |
| commit | a3338b55da55f467d984ac36e7c3f158b88245b9 (patch) | |
| tree | deb64e36a86d2455d215c9a379a1924b23bdf75e /task_cell_graph/.nix/derivation.nix | |
| parent | 2c850f934d7087061e6f8540ee3a273b9817fbc7 (diff) | |
| download | apps-science_tools-a3338b55da55f467d984ac36e7c3f158b88245b9.tar.gz | |
Dangling changes
Diffstat (limited to 'task_cell_graph/.nix/derivation.nix')
| -rw-r--r-- | task_cell_graph/.nix/derivation.nix | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/task_cell_graph/.nix/derivation.nix b/task_cell_graph/.nix/derivation.nix new file mode 100644 index 0000000..8837a86 --- /dev/null +++ b/task_cell_graph/.nix/derivation.nix @@ -0,0 +1,21 @@ +{ stdenv +, scons +, forstio +}: + +stdenv.mkDerivation { + pname = "kel_task_cell_graph"; + version = "0.0.0"; + + nativeBuildInputs = [ + scons + ]; + + buildInputs = [ + forstio.core + forstio.codec + forstio.codec-json + ]; + + src = ./..; +} |
