From 203c79745b0718d28fe08a6e2ba863ee9dff0922 Mon Sep 17 00:00:00 2001 From: Millian Poquet <millian.poquet@irit.fr> Date: Mon, 16 Jan 2023 15:09:41 +0100 Subject: [PATCH] nix: empty flake.nix This commit slightly improves how batsched can be imported in experiments designed as Nix flakes. This enables batsched source code to be fetched with full flake traceability (lock file), which can be useful for fetching non-public Batsim copies. Usage is very limited with this empty version though, a proper flake setup should override this file. --- flake.nix | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 flake.nix diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..e7261e4 --- /dev/null +++ b/flake.nix @@ -0,0 +1,3 @@ +{ + outputs = {...}: { }; +} -- GitLab