summaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
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;
+ };
+}