From 636a9b5dd7f2ad7d7c3af929ecf95e4d4fab9e97 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Wed, 18 Oct 2023 12:14:50 -0400 Subject: [PATCH] Add descriptions so nix flake check passes --- flake.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flake.nix b/flake.nix index 5e13a6e..a3de435 100644 --- a/flake.nix +++ b/flake.nix @@ -15,24 +15,28 @@ templates = { hello-world = { + description = "A simple and straight-forward 'hello world' Rust program."; path = builtins.filterSource (path: type: baseNameOf path == "flake.nix") ./examples/hello-world; }; cross-windows = { + description = "Pre-configured for cross-compiling to Windows."; path = builtins.filterSource (path: type: baseNameOf path == "flake.nix") ./examples/cross-windows; }; static-musl = { + description = "Pre-configured for statically linked binaries for Linux with musl."; path = builtins.filterSource (path: type: baseNameOf path == "flake.nix") ./examples/static-musl; }; multi-target = { + description = "A Rust project with multiple crates and build targets."; path = builtins.filterSource (path: type: baseNameOf path == "flake.nix") ./examples/multi-target;