diff options
author | Ben Sima <ben@bsima.me> | 2023-10-03 22:22:45 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2023-10-03 22:22:45 -0400 |
commit | 6107f8178e26ada67e5d5ec60501e24528b3db56 (patch) | |
tree | 6e7d8bc57231b841545c6e3add46eb51c64a5946 /Biz/Bild.nix | |
parent | 4226cbd8020253b010fb44d395db12efe68e1272 (diff) |
Add rundeps feature to bild
This allows me to specify runtime dependencies, not just system or
language deps.
Diffstat (limited to 'Biz/Bild.nix')
-rw-r--r-- | Biz/Bild.nix | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/Biz/Bild.nix b/Biz/Bild.nix index c7c3207..1e4bcf8 100644 --- a/Biz/Bild.nix +++ b/Biz/Bild.nix @@ -46,7 +46,18 @@ in nixpkgs // { bild = rec { c.packages = lib.attrsets.getAttrs (import ./Bild/Deps/C.nix) nixpkgs.pkgs; # expose some packages for inclusion in os/image builds - pkgs = with nixpkgs.pkgs; { inherit git; }; + pkgs = with nixpkgs.pkgs; { + inherit + black + deadnix + git + hlint + indent + ormolu + ruff + shellcheck + ; + }; # this is needed to do builds without calling out to nix, remove this when I # switch to all-nix builds |