diff options
author | Ben Sima <ben@bsima.me> | 2023-01-06 10:50:51 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2023-01-06 10:50:51 -0500 |
commit | fd2ed12bbc58fbcef3910952ed7df836664654e6 (patch) | |
tree | 64b2af53f78156ccf6af27097419d5d148a85559 | |
parent | 80e4894d6207658099a32266e05fb4ebaf99f3d0 (diff) |
Expose some packages in the nix library
At least one namespace (Biz/Dragons/Analysis.nix) needs this.
-rw-r--r-- | Biz/Bild.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Biz/Bild.nix b/Biz/Bild.nix index 4be456f..1bc9083 100644 --- a/Biz/Bild.nix +++ b/Biz/Bild.nix @@ -38,6 +38,9 @@ rec { # generally-useful things from nixpkgs inherit (nixpkgs) lib stdenv sources; + # expose some packages for inclusion in os/image builds + pkgs = with nixpkgs.pkgs; [ git ]; + # remove this when I switch to all-nix builds bildRuntimeDeps = with nixpkgs; [ pkg-config |