diff options
author | koverstreet <kent.overstreet@gmail.com> | 2024-07-31 18:22:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-31 18:22:23 -0400 |
commit | e42312b6028d96a735fdcd4262e59d5335f0e398 (patch) | |
tree | 1ea05d19213e129d6841b8d0068af9ac00648c34 | |
parent | c60ce818902d10f65180e261f8b0d7c72467a94d (diff) | |
parent | 73a271e130dcc091eb293a6018038cf557504f42 (diff) |
Merge pull request #324 from JohnRTitor/nix-fix
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; }); |