diff options
author | John Titor <50095635+JohnRTitor@users.noreply.github.com> | 2024-07-31 22:37:13 +0530 |
---|---|---|
committer | John Titor <50095635+JohnRTitor@users.noreply.github.com> | 2024-07-31 22:37:13 +0530 |
commit | 73a271e130dcc091eb293a6018038cf557504f42 (patch) | |
tree | 1ea05d19213e129d6841b8d0068af9ac00648c34 | |
parent | c60ce818902d10f65180e261f8b0d7c72467a94d (diff) |
nix: add meta.mainProgram to allow directly running from this repo
-rw-r--r-- | flake.nix | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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; }); |