summaryrefslogtreecommitdiff
path: root/run_and_record/.nix
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2025-10-01 12:38:54 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2025-10-01 12:38:54 +0200
commit5d8cd1d06c7faf0d30f17578ea4a29df006f3d9e (patch)
tree9430fb3314fcb0717537fca1678193928f21c0c7 /run_and_record/.nix
Initial run and record commit
Diffstat (limited to 'run_and_record/.nix')
-rw-r--r--run_and_record/.nix/derivation.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/run_and_record/.nix/derivation.nix b/run_and_record/.nix/derivation.nix
new file mode 100644
index 0000000..d312b5a
--- /dev/null
+++ b/run_and_record/.nix/derivation.nix
@@ -0,0 +1,21 @@
+{ stdenv
+, scons
+, forstio
+}:
+
+stdenv.mkDerivation {
+ pname = "kel_run_and_record";
+ version = "0.0.0";
+
+ nativeBuildInputs = [
+ scons
+ ];
+
+ buildInputs = [
+ forstio.core
+ forstio.codec
+ forstio.codec-json
+ ];
+
+ src = ./..;
+}