flake: Fix broken dev-shell

Many dependencies aren't currently included in the devShell. As ladybird
is already packaged downstream, we can pull in those buildInputs along
with the extra dev dependencies already defined.
This commit is contained in:
Jess
2024-11-20 15:11:10 +13:00
committed by Andrew Kaster
parent c59363e0e2
commit 43746ca52d
2 changed files with 12 additions and 17 deletions

View File

@@ -9,6 +9,6 @@
outputs = { self, nixpkgs, utils, }: utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs { inherit system; };
in {
devShells.default = import ./Ladybird { inherit pkgs; };
devShells.default = import ./UI { inherit pkgs; };
});
}