summaryrefslogtreecommitdiff
path: root/default.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 /default.nix
Initial run and record commit
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/default.nix b/default.nix
new file mode 100644
index 0000000..85895d6
--- /dev/null
+++ b/default.nix
@@ -0,0 +1,16 @@
+{ pkgs ? import <nixpkgs> {}
+, stdenv ? pkgs.llvmPackages_19.stdenv
+, forstio ? (import ((builtins.fetchGit {
+ url = "git@git.keldu.de:forstio/forstio";
+ ref = "dev";
+ }).outPath + "/default.nix"){
+ inherit stdenv;
+ }).forstio
+}:
+
+let
+in {
+ kel_rar = pkgs.callPackage ./run_and_record/.nix/derivation.nix {
+ inherit stdenv forstio;
+ };
+}