From 73a271e130dcc091eb293a6018038cf557504f42 Mon Sep 17 00:00:00 2001 From: John Titor <50095635+JohnRTitor@users.noreply.github.com> Date: Wed, 31 Jul 2024 22:37:13 +0530 Subject: [PATCH] nix: add meta.mainProgram to allow directly running from this repo --- flake.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/flake.nix b/flake.nix index 4dba19d78..4aa66a862 100644 --- a/flake.nix +++ b/flake.nix @@ -107,6 +107,12 @@ zlib zstd ]; + + meta = { + description = "Userspace tools for bcachefs"; + license = lib.licenses.gpl2Only; + mainProgram = "bcachefs"; + }; }; cargoArtifacts = craneLib.buildDepsOnly (commonArgs // { pname = cargoToml.package.name; });