From 7a366a44cf7f0aa2cb3471b9b03a83acba157707 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Tue, 2 Apr 2024 13:15:35 +0200 Subject: build(update_common_files): Allow to specify which file to move where --- common/default.nix | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 common/default.nix (limited to 'common/default.nix') diff --git a/common/default.nix b/common/default.nix new file mode 100644 index 0000000..473d4f8 --- /dev/null +++ b/common/default.nix @@ -0,0 +1,39 @@ +# This file specifies which files in the `./common` directory should be copied to which +# template in `./templates` +let + programmingLanguages = [ + "awk" + "c" + "rust" + "shell" + ]; + allLanguages = + programmingLanguages + ++ [ + "latex" + ]; + mkName = name: "./${name}"; + + mkBase = name: langs: { + "${mkName name}" = langs; + }; + + mkLang = name: lang: let + realLang = + if builtins.elem lang allLanguages + then lang + else builtins.throw "${lang} is not a recognized language!"; + in + mkBase name [realLang]; + mkProgramming = name: + mkBase name programmingLanguages; + mkAll = name: + mkBase name allLanguages; + +in + {} + // (mkAll ".licensure.yml") + // (mkAll "init") + // (mkAll "scripts/renew_copyright_header.sh") + // (mkAll "shell_line_editor.sh") + // (mkAll "treefmt.nix") -- cgit 1.4.1